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


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

.blog-hero {
    padding: 72px 0 52px;
}


/* =====================================================
   HERO
===================================================== */

.blog-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 70px;

    padding: 48px 50px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 68%,
            #f7f7f7 100%
        );

    border: 1px solid #e7e7e7;
    border-radius: 26px;

    box-shadow:
        0 1px 2px rgba(0, 0, 0, .02),
        0 20px 60px rgba(0, 0, 0, .045);
}

.blog-hero-copy {
    max-width: 700px;
}

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

    gap: 10px;

    margin-bottom: 16px;

    color: #929292;

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

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

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.page-kicker::before {
    content: "";

    width: 24px;
    height: 1px;

    background: #111111;
}

.blog-hero h1 {
    margin: 0;

    color: #111111;

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

    font-size: clamp(58px, 8vw, 88px);
    font-weight: 400;

    line-height: .95;

    letter-spacing: -4px;
}

.blog-hero-copy > p {
    max-width: 620px;

    margin-top: 24px;

    color: #6e6e6e;

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

    font-size: 17px;

    line-height: 1.75;
}


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

.blog-hero-profile {
    min-width: 245px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px;

    background: #111111;

    border-radius: 16px;

    color: #ffffff;
}

.blog-hero-profile img {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid rgba(255, 255, 255, .8);
}

.blog-hero-profile div {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.blog-hero-profile span {
    color: rgba(255, 255, 255, .45);

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

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

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.blog-hero-profile strong {
    margin-top: 3px;

    color: #ffffff;

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

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

.blog-hero-profile small {
    margin-top: 3px;

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

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

    font-size: 9px;
}


/* =====================================================
   FILTERS
===================================================== */

.filter-section {
    padding-bottom: 3px;
}

.filter-bar {
    min-height: 78px;

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

    gap: 35px;

    padding: 0 4px;

    border-bottom: 1px solid #e5e5e5;
}

.filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
}

.filter-button {
    min-height: 34px;

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

    padding: 0 15px;

    background: #f5f5f5;

    border: 1px solid #e9e9e9;
    border-radius: 999px;

    color: #707070;

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

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

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

.filter-button:hover {
    color: #111111;

    background: #eeeeee;

    transform: translateY(-1px);
}

.filter-button.active {
    color: #ffffff;

    background: #111111;

    border-color: #111111;
}

.article-count {
    color: #9a9a9a;

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

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

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.articles-section {
    padding: 82px 0 35px;
}

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

    gap: 18px;

    margin-bottom: 33px;
}

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

    gap: 12px;

    white-space: nowrap;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    color: #111111;

    background: #f2f2f2;

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

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

    font-size: 12px;
}

.section-label {
    color: #454545;

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

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

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.section-line {
    width: 100%;
    height: 1px;

    background: #e4e4e4;
}


/* =====================================================
   ARTICLES LAYOUT
===================================================== */

.articles-layout {
    display: grid;

    grid-template-columns: minmax(0, 760px) 300px;

    gap: 70px;
}


/* =====================================================
   ARTICLE LIST
===================================================== */

.articles-list {
    border-top: 1px solid #dddddd;
}

.article-card {
    position: relative;

    display: grid;

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

    gap: 34px;

    padding: 38px 0;

    border-bottom: 1px solid #e5e5e5;
}

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

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: #111111;

    transition: width .3s ease;
}

.article-card:hover::before {
    width: 100%;
}

.article-content {
    min-width: 0;
}


/* AUTHOR */

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

    gap: 10px;
}

.author-line img {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    border-radius: 50%;

    object-fit: cover;

    border: 1px solid #e2e2e2;
}

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

    gap: 8px;
}

.author-line strong {
    color: #3e3e3e;

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

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

.author-line span {
    color: #999999;

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

    font-size: 9px;
}

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

    margin-right: 8px;
}


/* TITLE */

.article-content h2 {
    max-width: 540px;

    margin: 17px 0 0;

    color: #171717;

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

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

    line-height: 1.18;

    letter-spacing: -.9px;

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

.article-content > a:hover h2 {
    color: #555555;

    transform: translateX(2px);
}

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

    max-width: 565px;

    margin: 11px 0 0;

    overflow: hidden;

    color: #737373;

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

    font-size: 14px;

    line-height: 1.65;

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


/* ARTICLE BOTTOM */

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

    margin-top: 23px;
}

.article-bottom > div {
    display: flex;
    align-items: center;

    gap: 12px;
}

.category {
    display: inline-flex;
    align-items: center;

    min-height: 28px;

    padding: 0 11px;

    color: #5c5c5c;

    background: #f3f3f3;

    border: 1px solid #e8e8e8;
    border-radius: 999px;

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

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

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

.category:hover {
    color: #ffffff;

    background: #111111;

    border-color: #111111;
}

.article-detail-arrow {
    width: 36px;
    height: 36px;

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

    color: #ffffff;

    background: #111111;

    border-radius: 50%;

    font-size: 14px;

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

.article-detail-arrow:hover {
    background: #2b2b2b;

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


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

.article-thumbnail {
    position: relative;

    height: 138px;

    align-self: center;

    overflow: hidden;

    background: #f1f1f1;

    border-radius: 10px;
}

.article-thumbnail::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(0, 0, 0, .08) 100%
        );

    pointer-events: none;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .45s ease;
}

.article-card:hover .article-thumbnail img {
    transform: scale(1.045);
}


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

.blog-empty {
    padding: 70px 0;

    text-align: left;
}

.blog-empty > span {
    color: #999999;

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

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

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.blog-empty h3 {
    max-width: 520px;

    margin: 15px 0 0;

    color: #171717;

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

    font-size: 36px;
    font-weight: 400;

    line-height: 1.14;
}

.blog-empty p {
    max-width: 520px;

    margin: 15px 0 0;

    color: #777777;

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

    font-size: 14px;

    line-height: 1.7;
}

.blog-empty > a {
    display: inline-flex;
    align-items: center;

    gap: 28px;

    min-height: 42px;

    margin-top: 25px;

    padding: 0 16px;

    color: #ffffff;

    background: #111111;

    border-radius: 999px;

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

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


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

.blog-sidebar {
    position: relative;
}


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

.sidebar-card {
    margin-bottom: 22px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e6e6e6;
    border-radius: 17px;
}

.sidebar-title {
    margin-bottom: 20px;

    color: #969696;

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

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

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


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

.profile-mini {
    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #1b1b1b 0%,
            #101010 100%
        );

    border-color: #111111;
}

.profile-mini .sidebar-title {
    color: rgba(255, 255, 255, .42);
}

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

    gap: 13px;
}

.mini-profile img {
    width: 49px;
    height: 49px;

    flex: 0 0 49px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid rgba(255, 255, 255, .8);
}

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

.mini-profile strong {
    color: #ffffff;

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

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

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

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

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

    font-size: 8px;
}

.profile-mini > p {
    margin-top: 18px;

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

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

    font-size: 13px;

    line-height: 1.7;
}

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

    margin-top: 20px;

    padding-top: 16px;

    color: #ffffff;

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

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

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

    transition: opacity .2s ease;
}

.sidebar-link:hover {
    opacity: .65;
}


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

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

    min-height: 44px;

    border-bottom: 1px solid #ededed;

    color: #535353;

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

    font-size: 10px;

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

.sidebar-topics a:first-child {
    border-top: 1px solid #ededed;
}

.sidebar-topics a:hover {
    padding-left: 5px;

    color: #111111;
}

.sidebar-topics a.active {
    color: #111111;

    font-weight: 700;
}

.sidebar-topics a.active span::before {
    content: "●";

    margin-right: 7px;

    font-size: 6px;

    vertical-align: middle;
}

.sidebar-topics small {
    color: #aaaaaa;

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

    font-size: 8px;
}


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

@media (max-width: 1000px) {

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

        gap: 55px;
    }

    .blog-sidebar {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

    .sidebar-card {
        margin-bottom: 0;
    }

}


@media (max-width: 820px) {

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

        gap: 35px;

        padding: 40px;
    }

    .blog-hero-profile {
        min-width: 0;
    }

}


@media (max-width: 700px) {

    .blog-hero {
        padding: 38px 0 30px;
    }

    .blog-hero-inner {
        padding: 32px 26px;

        border-radius: 20px;
    }

    .blog-hero h1 {
        font-size: 58px;

        letter-spacing: -2.5px;
    }

    .blog-hero-copy > p {
        font-size: 15px;
    }


    /* FILTER */

    .filter-bar {
        align-items: flex-start;
        flex-direction: column;

        gap: 14px;

        padding: 18px 0;
    }

    .filters {
        width: 100%;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 4px;
    }

    .filter-button {
        white-space: nowrap;
    }


    /* ARTICLES */

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

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

        gap: 20px;

        padding: 30px 0;
    }

    .article-thumbnail {
        width: 125px;
        height: 112px;
    }

    .article-content h2 {
        font-size: 23px;
    }

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

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

    .author-line span {
        display: none;
    }


    /* SIDEBAR */

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

}


@media (max-width: 500px) {

    .blog-hero-inner {
        padding: 28px 22px;
    }

    .blog-hero h1 {
        font-size: 52px;
    }

    .blog-hero-profile {
        width: 100%;
    }

    .section-heading {
        gap: 12px;
    }

    .article-card {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .article-thumbnail {
        grid-row: 1;

        width: 100%;
        height: 205px;

        border-radius: 12px;
    }

    .article-content h2 {
        font-size: 25px;
    }

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

}
/* =====================================================
   PROFESSIONAL PROFILE META
===================================================== */

.sidebar-professional-meta {
    display: flex;
    flex-direction: column;

    gap: 8px;

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

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

.sidebar-professional-meta span {
    position: relative;

    padding-left: 13px;

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

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

    font-size: 8px;

    line-height: 1.55;
}

.sidebar-professional-meta span::before {
    content: "";

    position: absolute;

    top: 6px;
    left: 0;

    width: 4px;
    height: 4px;

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

    border-radius: 50%;
}


/* =====================================================
   BLOG FOCUS CARD
===================================================== */

.blog-focus-card {
    background: #f4f4f2;

    border-color: #e6e6e3;
}

.blog-focus-card > p {
    margin: 0;

    color: #707070;

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

    font-size: 13px;

    line-height: 1.65;
}

.focus-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 18px;
}

.focus-tags span {
    min-height: 28px;

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

    padding: 0 10px;

    color: #565656;

    background: #ffffff;

    border: 1px solid #dfdfdc;
    border-radius: 999px;

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

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


/* READING TIME */

.article-bottom .reading-time {
    color: #999;

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

    font-size: 8px;
}