@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfbfa 48%,
            #ffffff 100%
        );

    color: #1f1f1f;

    font-family: "Inter", Arial, sans-serif;

    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), 1140px);
    margin-inline: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(255,255,255,.88);

    border-bottom: 1px solid rgba(20,20,20,.08);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-inner {
    min-height: 84px;

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

    gap: 40px;
}

.brand {
    position: relative;

    color: #161616;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;
    font-weight: 500;

    letter-spacing: -1.3px;

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.brand::after {
    content: ".";

    margin-left: 2px;

    color: #727272;
}

.brand:hover {
    opacity: .72;

    transform: translateY(-1px);
}


/* =====================================================
   NAV
===================================================== */

.nav {
    display: flex;
    align-items: center;

    gap: 5px;
}

.nav a {
    position: relative;

    min-height: 39px;

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

    padding: 0 15px;

    border-radius: 100px;

    color: #7c7c7c;

    font-size: 10px;
    font-weight: 500;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.nav a:hover {
    color: #171717;

    background: #f1f1ef;

    transform: translateY(-1px);
}

.nav a.active {
    color: #fff;

    background: #1d1d1d;

    font-weight: 600;
}

.nav a.active::after {
    display: none;
}


/* =====================================================
   PROFILE
===================================================== */

.profile-section {
    padding: 58px 0 30px;
}

.profile-card {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 265px;

    min-height: 310px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e4e4e1;
    border-radius: 28px;

    box-shadow:
        0 2px 5px rgba(0,0,0,.02),
        0 20px 50px rgba(0,0,0,.035),
        0 55px 120px rgba(0,0,0,.035);
}


/* black editorial accent */

.profile-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 48px;

    width: 94px;
    height: 3px;

    background: #191919;

    z-index: 2;
}


/* =====================================================
   PROFILE LEFT
===================================================== */

.profile-main {
    display: flex;
    align-items: center;

    gap: 38px;

    padding: 52px 52px;
}

.profile-image-wrap {
    position: relative;

    width: 136px;
    height: 136px;

    flex: 0 0 136px;
}

.profile-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border: 6px solid #fff;
    border-radius: 50%;

    box-shadow:
        0 0 0 1px #dcdcd8,
        0 15px 35px rgba(0,0,0,.12);
}

.profile-status {
    position: absolute;

    right: 7px;
    bottom: 8px;

    width: 16px;
    height: 16px;

    background: #161616;

    border: 3px solid #fff;
    border-radius: 50%;
}


/* =====================================================
   PROFILE TEXT
===================================================== */

.profile-info {
    min-width: 0;

    max-width: 680px;
}

.profile-kicker {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: #969696;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.7px;
}

.profile-kicker i {
    width: 4px;
    height: 4px;

    background: #1c1c1c;

    border-radius: 50%;
}

.profile-info h1 {
    color: #171717;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 43px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: -1.8px;
}

.profile-role {
    margin-top: 11px;

    color: #363636;

    font-size: 12px;
    font-weight: 600;
}

.profile-bio {
    max-width: 630px;

    margin-top: 14px;

    color: #747474;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;
    line-height: 1.75;
}


/* =====================================================
   PROFILE BOTTOM
===================================================== */

.profile-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 24px;
}

.profile-links {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;
}

.profile-links a {
    position: relative;

    color: #656565;

    font-size: 9px;
    font-weight: 500;

    transition: color .2s ease;
}

.profile-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background: #191919;

    transition: width .25s ease;
}

.profile-links a:hover {
    color: #111;
}

.profile-links a:hover::after {
    width: 100%;
}

.profile-meta {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #a4a4a4;

    font-size: 8px;

    white-space: nowrap;
}

.profile-meta i {
    width: 3px;
    height: 3px;

    background: #1d1d1d;

    border-radius: 50%;
}


/* =====================================================
   PROFILE RIGHT
===================================================== */

.profile-action-area {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 36px;

    background:
        linear-gradient(
            155deg,
            #242424 0%,
            #161616 100%
        );

    border-left: 1px solid #222;
}

.profile-number {
    align-self: flex-end;

    color: rgba(255,255,255,.35);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;
}

.profile-action-copy > span {
    display: block;

    margin-bottom: 10px;

    color: rgba(255,255,255,.48);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.7px;
}

.profile-action-copy p {
    max-width: 175px;

    color: rgba(255,255,255,.72);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;
    line-height: 1.6;
}

.profile-circle-button {
    width: 47px;
    height: 47px;

    align-self: flex-end;

    display: grid;
    place-items: center;

    background: #fff;

    border-radius: 50%;

    color: #191919;

    font-size: 15px;

    transition:
        transform .25s ease,
        background .25s ease;
}

.profile-circle-button:hover {
    background: #ececec;

    transform: translate(2px,-2px);
}


/* =====================================================
   SECTION HEADINGS
===================================================== */

.home-featured {
    padding: 76px 0 35px;
}

.latest-section {
    padding: 85px 0 50px;
}

.home-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
    padding-bottom: 18px;

    border-bottom: 1px solid #dededb;
}

.home-section-heading > div {
    display: flex;
    align-items: center;

    gap: 13px;
}

.section-index {
    color: #9c9c9c;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
}

.section-name {
    color: #242424;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.home-section-heading > a {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #737373;

    font-size: 9px;
    font-weight: 500;

    transition: color .2s ease;
}

.home-section-heading > a:hover {
    color: #111;
}

.article-total {
    color: #9f9f9f;

    font-size: 9px;
}


/* =====================================================
   FEATURED STORY
===================================================== */

.featured-story {
    display: grid;
    grid-template-columns: 54% 46%;

    min-height: 410px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e2e2df;
    border-radius: 25px;

    box-shadow:
        0 2px 4px rgba(0,0,0,.02),
        0 20px 50px rgba(0,0,0,.035);
}

.featured-story-image {
    position: relative;

    width: 100%;
    height: 410px;

    overflow: hidden;

    background: #efefed;
}

.featured-story-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02),
            rgba(0,0,0,.18)
        );

    pointer-events: none;
}

.featured-story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .55s ease;
}

.featured-story:hover .featured-story-image img {
    transform: scale(1.025);
}

.featured-label {
    position: absolute;
    z-index: 2;

    top: 22px;
    left: 22px;

    min-height: 31px;

    display: inline-flex;
    align-items: center;

    padding: 0 12px;

    background: #1c1c1c;

    border-radius: 100px;

    color: #fff;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: .7px;
}


/* =====================================================
   FEATURED CONTENT
===================================================== */

.featured-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 50px;
}

.premium-author {
    margin-bottom: 27px;
}

.featured-story-content h2 {
    max-width: 500px;

    color: #181818;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 50px);
    font-weight: 500;

    line-height: 1.06;

    letter-spacing: -1.8px;

    transition: color .2s ease;
}

.featured-story-content > a:hover h2 {
    color: #555;
}

.featured-story-content > p {
    max-width: 510px;

    margin-top: 20px;

    color: #727272;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;
    line-height: 1.75;
}

.featured-story-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    margin-top: 35px;
    padding-top: 25px;

    border-top: 1px solid #e7e7e4;
}

.featured-story-footer > div {
    display: flex;
    align-items: center;

    gap: 12px;
}

.featured-read {
    min-height: 39px;

    display: inline-flex;
    align-items: center;

    gap: 18px;

    padding: 0 16px;

    background: #1e1e1e;

    border: 1px solid #1e1e1e;
    border-radius: 100px;

    color: #fff;

    font-size: 9px;
    font-weight: 600;

    transition:
        transform .2s ease,
        background .2s ease;
}

.featured-read:hover {
    background: #050505;

    transform: translateY(-1px);
}


/* =====================================================
   AUTHOR
===================================================== */

.author-row {
    display: flex;
    align-items: center;

    gap: 9px;
}

.author-row img {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    object-fit: cover;

    border-radius: 50%;
}

.author-row > div {
    display: flex;
    align-items: center;

    gap: 8px;
}

.author-row strong {
    color: #3a3a3a;

    font-size: 10px;
    font-weight: 600;
}

.author-row span {
    color: #979797;

    font-size: 9px;
}

.author-row span::before {
    content: "·";

    margin-right: 8px;
}


/* =====================================================
   META
===================================================== */

.category {
    min-height: 28px;

    display: inline-flex;
    align-items: center;

    padding: 0 11px;

    background: #1f1f1f;

    border-radius: 100px;

    color: #fff;

    font-size: 8px;
    font-weight: 500;
}

.reading-time {
    color: #939393;

    font-size: 9px;
}


/* =====================================================
   LATEST LAYOUT
===================================================== */

.latest-layout {
    display: grid;
    grid-template-columns: minmax(0, 750px) 290px;

    gap: 72px;
}

.latest-list {
    border-top: 1px solid #dededb;
}


/* =====================================================
   ARTICLE CARDS
===================================================== */

.latest-card {
    display: grid;
    grid-template-columns: minmax(0,1fr) 195px;

    gap: 32px;

    min-height: 225px;

    padding: 36px 0;

    border-bottom: 1px solid #e4e4e1;

    transition:
        transform .25s ease;
}

.latest-card:hover {
    transform: translateX(3px);
}

.latest-card-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.latest-card-content h2 {
    max-width: 540px;

    margin-top: 16px;

    color: #1c1c1c;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;
    font-weight: 600;

    line-height: 1.18;

    letter-spacing: -.75px;

    transition: color .2s ease;
}

.latest-card-content > a:hover h2 {
    color: #666;
}

.latest-card-content > a p {
    display: -webkit-box;

    max-width: 570px;

    margin-top: 11px;

    overflow: hidden;

    color: #747474;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;
    line-height: 1.65;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.latest-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;
    padding-top: 20px;
}

.latest-card-footer > div {
    display: flex;
    align-items: center;

    gap: 12px;
}

.article-arrow {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    background: #fff;

    border: 1px solid #dcdcdc;
    border-radius: 50%;

    color: #555;

    font-size: 12px;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.article-arrow:hover {
    background: #1b1b1b;

    border-color: #1b1b1b;

    color: #fff;

    transform: translate(1px,-1px);
}


/* =====================================================
   ARTICLE IMAGE
===================================================== */

.latest-image {
    height: 145px;

    align-self: center;

    overflow: hidden;

    background: #f1f1ef;

    border-radius: 12px;
}

.latest-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}

.latest-card:hover .latest-image img {
    transform: scale(1.04);
}


/* =====================================================
   SIDEBAR
===================================================== */

.home-sidebar {
    display: flex;
    flex-direction: column;

    gap: 21px;
}

.sidebar-card {
    padding: 27px;

    background: #fff;

    border: 1px solid #e2e2df;
    border-radius: 19px;
}

.sidebar-kicker {
    display: block;

    margin-bottom: 16px;

    color: #a1a1a1;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.6px;
}

.sidebar-card > h3 {
    max-width: 220px;

    color: #202020;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
    font-weight: 500;

    line-height: 1.18;

    letter-spacing: -.6px;
}


/* =====================================================
   TOPICS
===================================================== */

.topic-list {
    margin-top: 23px;

    border-top: 1px solid #e7e7e4;
}

.topic-list a {
    min-height: 46px;

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

    border-bottom: 1px solid #e7e7e4;

    color: #575757;

    font-size: 10px;

    transition:
        color .2s ease,
        padding .2s ease;
}

.topic-list a:hover {
    padding-left: 5px;

    color: #111;
}

.topic-list small {
    min-width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    background: #f2f2ef;

    border-radius: 50%;

    color: #606060;

    font-size: 8px;
}


/* =====================================================
   ABOUT SIDEBAR
===================================================== */

.about-editorial {
    background:
        linear-gradient(
            150deg,
            #242424,
            #171717
        );

    border-color: #242424;
}

.about-editorial .sidebar-kicker {
    color: rgba(255,255,255,.38);
}

.sidebar-profile {
    display: flex;
    align-items: center;

    gap: 12px;
}

.sidebar-profile img {
    width: 50px;
    height: 50px;

    object-fit: cover;

    border: 2px solid rgba(255,255,255,.9);
    border-radius: 50%;
}

.sidebar-profile div {
    display: flex;
    flex-direction: column;
}

.sidebar-profile strong {
    color: #fff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
    font-weight: 500;
}

.sidebar-profile span {
    margin-top: 3px;

    color: rgba(255,255,255,.45);

    font-size: 8px;
}

.about-editorial > p {
    margin-top: 19px;

    color: rgba(255,255,255,.64);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

.sidebar-more {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 20px;
    padding-top: 17px;

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

    color: #fff;

    font-size: 9px;
    font-weight: 600;
}


/* =====================================================
   CTA
===================================================== */

.home-cta {
    padding: 70px 0 100px;
}

.home-cta-card {
    position: relative;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 70px;

    overflow: hidden;

    padding: 62px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255,255,255,.07),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #1d1d1d 0%,
            #0f0f0f 100%
        );

    border-radius: 27px;

    color: #fff;
}

.home-cta-card::before {
    content: "";

    position: absolute;

    top: -95px;
    right: -60px;

    width: 230px;
    height: 230px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.home-cta-card > div > span {
    color: rgba(255,255,255,.35);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.7px;
}

.home-cta-card h2 {
    max-width: 680px;

    margin-top: 14px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(37px,5vw,54px);
    font-weight: 500;

    line-height: 1.06;

    letter-spacing: -1.8px;
}

.home-cta-card > a {
    position: relative;
    z-index: 2;

    min-width: 185px;
    height: 46px;

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

    gap: 28px;

    padding: 0 18px;

    background: #fff;

    border-radius: 100px;

    color: #171717;

    font-size: 9px;
    font-weight: 600;

    transition:
        transform .2s ease,
        background .2s ease;
}

.home-cta-card > a:hover {
    background: #ededed;

    transform: translateY(-2px);
}


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

.footer {
    background: #131313;

    border-top: 1px solid #222;
}

.footer-inner {
    min-height: 96px;

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

    color: rgba(255,255,255,.43);

    font-size: 10px;
}

.footer-inner div {
    display: flex;

    gap: 22px;
}

.footer-inner a {
    color: rgba(255,255,255,.52);

    transition: color .2s ease;
}

.footer-inner a:hover {
    color: #fff;
}


/* =====================================================
   EMPTY
===================================================== */

.home-empty {
    padding: 45px 0;

    border-bottom: 1px solid #e6e6e3;
}

.home-empty h3 {
    color: #292929;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
    font-weight: 500;
}

.home-empty p {
    margin-top: 8px;

    color: #858585;

    font-size: 11px;
}

.sidebar-empty {
    margin-top: 15px;

    color: #999;

    font-size: 10px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .profile-card {
        grid-template-columns: 1fr;
    }

    .profile-action-area {
        min-height: 155px;

        display: grid;
        grid-template-columns: 1fr auto;

        align-items: end;

        gap: 30px;

        border-left: none;
        border-top: 1px solid #282828;
    }

    .profile-number {
        position: absolute;

        top: 28px;
        right: 34px;
    }

    .profile-action-copy p {
        max-width: 430px;
    }

    .latest-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .home-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 800px) {

    .featured-story {
        grid-template-columns: 1fr;
    }

    .featured-story-image {
        height: 380px;
    }

    .featured-story-content {
        padding: 40px 36px;
    }
}


@media (max-width: 650px) {

    .container {
        width: min(calc(100% - 28px), 1140px);
    }


    /* HEADER */

    .header-inner {
        min-height: auto;

        align-items: flex-start;
        flex-direction: column;

        gap: 17px;

        padding: 19px 0;
    }

    .brand {
        font-size: 25px;
    }

    .nav {
        width: 100%;

        overflow-x: auto;

        padding-bottom: 3px;
    }

    .nav a {
        flex: 0 0 auto;

        min-height: 36px;

        padding: 0 13px;

        white-space: nowrap;
    }


    /* PROFILE */

    .profile-section {
        padding-top: 30px;
    }

    .profile-card {
        border-radius: 21px;
    }

    .profile-card::before {
        left: 28px;

        width: 70px;
    }

    .profile-main {
        align-items: flex-start;
        flex-direction: column;

        gap: 24px;

        padding: 32px 27px;
    }

    .profile-image-wrap {
        width: 100px;
        height: 100px;

        flex-basis: 100px;
    }

    .profile-info h1 {
        font-size: 34px;
    }

    .profile-bio {
        font-size: 13px;
    }

    .profile-bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 16px;
    }

    .profile-meta {
        white-space: normal;
    }

    .profile-action-area {
        padding: 30px 27px;
    }


    /* FEATURED */

    .home-featured {
        padding-top: 55px;
    }

    .featured-story {
        border-radius: 20px;
    }

    .featured-story-image {
        height: 290px;
    }

    .featured-story-content {
        padding: 32px 26px;
    }

    .featured-story-content h2 {
        font-size: 34px;
    }

    .featured-story-footer {
        align-items: flex-start;
        flex-direction: column;
    }


    /* LATEST */

    .latest-section {
        padding-top: 65px;
    }

    .latest-card {
        grid-template-columns: minmax(0,1fr) 110px;

        min-height: 175px;

        gap: 18px;

        padding: 29px 0;
    }

    .latest-image {
        width: 110px;
        height: 110px;
    }

    .latest-card-content h2 {
        font-size: 21px;
    }

    .latest-card-content > a p {
        display: none;
    }

    .author-row > div {
        display: block;
    }

    .author-row span {
        display: none;
    }

    .reading-time {
        display: none;
    }

    .article-arrow {
        display: none;
    }


    /* SIDEBAR */

    .home-sidebar {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .home-cta-card {
        align-items: flex-start;
        flex-direction: column;

        gap: 34px;

        padding: 42px 31px;
    }

    .home-cta-card > a {
        width: 100%;
    }


    /* FOOTER */

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;

        gap: 18px;

        padding: 28px 0;
    }
}


@media (max-width: 430px) {

    .latest-card {
        grid-template-columns: 1fr;
    }

    .latest-image {
        grid-row: 1;

        width: 100%;
        height: 205px;
    }

    .profile-info h1 {
        font-size: 31px;
    }

    .featured-story-content h2 {
        font-size: 31px;
    }
}

/* =========================================================
   ADMIN NAV LINK
========================================================= */

.nav-admin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 14px;

    border: 1px solid #d9d9d9;
    border-radius: 100px;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease;
}


.nav-admin-link:hover,
.nav-admin-link.active {
    background: #171717;
    color: #fff;
    border-color: #171717;
}


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

.footer-links {
    display: flex;
    align-items: center;

    gap: 20px;
}


/* =========================================================
   FOOTER ADMIN LOGIN
========================================================= */

.footer-admin-login {
    padding-left: 20px;

    border-left: 1px solid rgba(0, 0, 0, .15);

    font-size: 12px;
    font-weight: 500;

    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;

    opacity: .55;

    transition:
        opacity .2s ease;
}

.footer-admin-login:hover {
    opacity: 1;
}


.footer-admin-login:hover {
    opacity: 1;
}


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

.footer-logout-form {
    display: inline-flex;

    margin: 0;
    padding: 0;
}


.footer-logout-button {
    padding: 0;

    background: transparent;
    border: 0;

    color: inherit;

    font-family: inherit;
    font-size: 12px;
    font-weight: 500;

    opacity: .55;

    cursor: pointer;

    transition:
        opacity .2s ease;
}


.footer-logout-button:hover {
    opacity: 1;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .nav-admin-link {
        width: 100%;

        justify-content: flex-start;

        padding-left: 0;
        padding-right: 0;

        border: 0;
        border-radius: 0;

        background: transparent;
    }


    .nav-admin-link:hover,
    .nav-admin-link.active {
        background: transparent;

        color: inherit;

        border-color: transparent;
    }


    .footer-links {
        flex-wrap: wrap;

        gap: 14px 18px;
    }


    .footer-admin-login {
        padding-left: 0;
 text-decoration: underline;

        text-underline-offset: 4px;
        border-left: 0;
    }
}

/* =========================================================
   VISITOR ANALYTICS
========================================================= */

.admin-visitor-section {
    margin-bottom: 60px;
}


.admin-visitor-stats {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


.admin-visitor-stat {
    min-height: 165px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 25px;

    background: #fff;

    border: 1px solid #e9e9e6;
    border-radius: 14px;
}


.admin-visitor-label {
    margin-bottom: auto;

    color: #999;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.admin-visitor-stat strong {
    display: block;

    margin-top: 28px;

    color: #171717;

    font-size: 42px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: -.045em;
}


.admin-visitor-stat small {
    display: block;

    margin-top: 8px;

    color: #999;

    font-size: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .admin-visitor-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 600px) {

    .admin-visitor-stats {
        grid-template-columns: 1fr;
    }


    .admin-visitor-stat {
        min-height: 140px;
    }

}