/* =========================
   594 DAILY BTS VLOGS
========================= */

body {
    background: #000;
    color: #fff;
    text-align: center;
}


/* =========================
   PAGE
========================= */

.vlog-page {
    width: 100%;
    margin: 0;
    background: #000;
}


/* =========================
   PRIVATE ACCESS HERO
========================= */

.vlog-hero {
    position: relative;

    background-image: url("../images/bg-11.jpg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #000;
}

.vlog-hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.75);
}

.vlog-hero-inner {
    position: relative;
    z-index: 2;

    width: min(92%, 390px);

    margin: 0 auto;

    padding: 42px 0 34px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.vlog-logo {
    width: min(42vw, 150px);

    margin: 0 auto 18px;

    transform: translateY(-10px) scale(0.8);
}

.vlog-private-title {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.vlog-private-access {
    margin-top: 5px;

    font-size: 11px;
    line-height: 1.4;

    color: rgba(255,255,255,.75);
}


/* =========================
   FEED
========================= */

.vlog-feed {
    width: min(92%, 390px);

    margin: 0 auto;

    padding: 32px 0 42px;
}


/* =========================
   INTRO
========================= */

.vlog-intro {
    margin-bottom: 34px;
}

.vlog-intro h1 {
    font-size: 20px;
    line-height: 1.05;
    font-weight: 800;
}

.vlog-intro p {
    margin-top: 10px;

    font-size: 12px;
    line-height: 1.6;

    color: rgba(255,255,255,.80);
}


/* =========================
   DAY
========================= */

.vlog-day-divider {
    width: 44px;
    height: 1px;

    margin: 0 auto 24px;

    background: rgba(255,255,255,.36);
}

.vlog-day-title {
    margin-bottom: 24px;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .5px;
}


/* =========================
   CLIP
========================= */

.vlog-entry {
    padding-bottom: 30px;
    margin-bottom: 26px;

    border-bottom: 1px solid rgba(255,255,255,.18);
}

.vlog-time {
    margin-bottom: 10px;

    font-size: 12px;
    line-height: 1.4;
}


/* VIDEO */

.vlog-video {
    width: 100%;
    aspect-ratio: 16 / 9;

    margin: 0 auto 14px;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;

    background: #111;

    display: flex;
    align-items: center;
    justify-content: center;
}

.vlog-video span {
    font-size: 11px;

    color: rgba(255,255,255,.38);
}


/* PROJECT */

.vlog-project {
    margin-bottom: 5px;

    font-size: 12px;
    line-height: 1.4;

    color: rgba(255,255,255,.70);
}


/* TITLE */

.vlog-entry h3 {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
}


/* DESCRIPTION */

.vlog-description {
    margin-top: 8px;

    font-size: 12px;
    line-height: 1.55;

    color: rgba(255,255,255,.87);
}


/* =========================
   ENGAGEMENT
========================= */

.vlog-engagement {
    margin-top: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 11px;
    line-height: 1.4;
}

.vlog-engagement-divider {
    color: rgba(255,255,255,.35);
}


/* =========================
   FOOTER
========================= */

.vlog-footer {
    margin-top: 14px;

    padding: 20px 10px 0;

    border-top: 1px solid rgba(255,255,255,.18);
}

.vlog-footer p {
    font-size: 11px;
    line-height: 1.5;

    color: rgba(255,255,255,.75);
}


/* =========================
   TABLET / DESKTOP
========================= */

@media (min-width: 700px) {

    .vlog-feed,
    .vlog-hero-inner {
        width: 390px;
    }

}