/**
 * Hetneo Links Blog Theme - Main Stylesheet
 * Compiled from SCSS source files
 */

/* ===========================================
   CSS Custom Properties (Design Tokens)
   =========================================== */

:root {
    /* Colors - Landing V2 */
    --lp-blue-950: #152B44;
    --lp-gray-600: #7E8299;
    --lp-gray-50: #F5F7F8;
    --lp-turquoise-500: #08B49C;
    --lp-white: #FFFFFF;

    /* Colors - Blog Specific */
    --blog-bg-gray: #F5F7F8;
    --blog-bg-blue: #F0F6FE;
    --blog-tag-bg: #E5EEF9;
    --blog-border: #EDEFF2;
    --blog-pagination-active: #EFFEFA;

    /* Typography - Font Families */
    --lp-font-headline: 'DM Sans', sans-serif;
    --lp-font-body: 'DM Sans', sans-serif;
    --lp-font-ui: 'Inter', sans-serif;

    /* Typography - H1 */
    --lp-h1-size: 60px;
    --lp-h1-line-height: 66px;
    --lp-h1-weight: 700;

    /* Typography - Body */
    --lp-body-size: 18px;
    --lp-body-line-height: 28px;
    --lp-body-weight: 400;

    /* Typography - Caption */
    --lp-caption-size: 16px;
    --lp-caption-line-height: 24px;
    --lp-caption-weight: 500;

    /* Typography - Blog */
    --blog-title-size: 36px;
    --blog-title-line-height: 46px;
    --blog-section-title-size: 28px;
    --blog-section-title-line-height: 38px;
    --blog-card-title-size: 18px;
    --blog-card-title-line-height: 28px;
    --blog-card-title-small-size: 16px;
    --blog-card-title-small-line-height: 24px;
    --blog-helper-size: 12px;
    --blog-helper-line-height: 16px;

    /* Spacing */
    --lp-section-padding-x: 72px;
    --lp-section-padding-y: 80px;
    --lp-content-gap: 40px;
    --lp-text-gap: 24px;

    /* Blog Spacing */
    --blog-page-padding-x: 72px;
    --blog-page-padding-y: 80px;
    --blog-page-padding-x-mobile: 16px;
    --blog-page-padding-y-mobile: 24px;
    --blog-sidebar-width: 298px;
    --blog-main-width: 974px;
    --blog-similar-width: 358px;
    --blog-content-gap: 24px;
    --blog-section-gap: 48px;
    --blog-card-padding: 16px;
    --blog-card-radius: 16px;
    --blog-card-image-size: 200px;
    --blog-card-image-size-small: 112px;

    /* Effects */
    --lp-card-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
    --lp-mobile-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.08);

    /* Border Radius */
    --lp-btn-radius: 24px;
    --lp-card-radius: 16px;
    --lp-icon-radius: 16px;
}

/* ===========================================
   Base Reset & Typography
   =========================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--lp-font-body);
    font-size: var(--lp-body-size);
    font-weight: var(--lp-body-weight);
    line-height: var(--lp-body-line-height);
    color: var(--lp-blue-950);
    background-color: var(--lp-white);
}

body.lp-mobile-menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===========================================
   Header
   =========================================== */

.lp-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--lp-white);
    box-shadow: var(--lp-card-shadow);
    padding: 24px var(--lp-section-padding-x);
    height: 96px;
}

@media (max-width: 1439px) {
    .lp-header {
        padding: 24px 40px;
    }
}

@media (max-width: 991px) {
    .lp-header {
        padding: 16px 40px;
        height: 80px;
    }
}

@media (max-width: 767px) {
    .lp-header {
        background-color: var(--lp-blue-950);
        padding: 8px 16px;
        height: auto;
        border-radius: 0 0 8px 8px;
        box-shadow: var(--lp-mobile-shadow);
    }
}

.lp-header__logo {
    flex-shrink: 0;
    width: 160px;
    height: 48px;
}

.lp-header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-header__logo-dark {
    display: block;
}

.lp-header__logo-white {
    display: none;
}

@media (max-width: 767px) {
    .lp-header__logo {
        width: 100px;
        height: 26px;
    }

    .lp-header__logo-dark {
        display: none;
    }

    .lp-header__logo-white {
        display: block;
    }
}

/* Desktop Navigation */
.lp-header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 20px;
}

@media (max-width: 1439px) {
    .lp-header__nav {
        gap: 16px;
        margin-left: 16px;
    }
}

@media (max-width: 991px) {
    .lp-header__nav {
        display: none;
    }
}

.lp-header__nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-header__nav-link {
    font-family: var(--lp-font-body);
    font-size: var(--lp-body-size);
    font-weight: 400;
    line-height: 18px;
    color: var(--lp-blue-950);
    text-decoration: none;
    padding: 4px;
    background-color: var(--lp-white);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.lp-header__nav-link:hover {
    color: var(--lp-turquoise-500);
}

.lp-header__nav-link--active {
    color: var(--lp-turquoise-500);
}

/* Header Buttons */
.lp-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-header__btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--lp-white);
    background-color: var(--lp-blue-950);
    padding: 12px 24px;
    border-radius: var(--lp-btn-radius);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.lp-header__btn-login:hover {
    background-color: #0f1f33;
    color: var(--lp-white);
}

@media (max-width: 991px) {
    .lp-header__btn-login {
        display: none;
    }
}

.lp-header__btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-body);
    font-size: var(--lp-body-size);
    font-weight: 700;
    line-height: var(--lp-body-line-height);
    color: var(--lp-white);
    background-color: var(--lp-turquoise-500);
    padding: 12px 24px;
    border-radius: var(--lp-btn-radius);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.lp-header__btn-cta:hover {
    background-color: #079483;
    color: var(--lp-white);
}

@media (max-width: 1439px) {
    .lp-header__btn-cta {
        display: none;
    }
}

.lp-header__btn-cta--mobile {
    display: none;
}

@media (max-width: 1439px) {
    .lp-header__btn-cta--mobile {
        display: inline-flex;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        padding: 10px 24px;
        height: 44px;
    }
}

/* Mobile Menu Toggle */
.lp-header__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--lp-white);
    border: none;
    border-radius: 40px;
    cursor: pointer;
    padding: 8px;
}

.lp-header__menu-icon {
    width: 24px;
    height: 24px;
    color: var(--lp-blue-950);
}

.lp-header__menu-icon--open {
    display: block;
}

.lp-header__menu-icon--close {
    display: none;
}

.lp-header__menu-toggle.is-active .lp-header__menu-icon--open {
    display: none;
}

.lp-header__menu-toggle.is-active .lp-header__menu-icon--close {
    display: block;
}

@media (max-width: 991px) {
    .lp-header__menu-toggle {
        display: flex;
    }
}

/* ===========================================
   Mobile Menu Overlay
   =========================================== */

.lp-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, var(--lp-blue-950) 0%, #0CB49C 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lp-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.lp-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    flex-shrink: 0;
}

.lp-mobile-menu__logo {
    width: 100px;
    height: 26px;
}

.lp-mobile-menu__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lp-mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--lp-white);
    border: none;
    border-radius: 40px;
    cursor: pointer;
    padding: 8px;
}

.lp-mobile-menu__close svg {
    width: 24px;
    height: 24px;
    color: var(--lp-blue-950);
}

.lp-mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 24px 40px;
    gap: 40px;
    overflow-y: auto;
}

.lp-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.lp-mobile-menu__link {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--lp-white);
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s ease;
}

.lp-mobile-menu__link:hover {
    opacity: 0.8;
    color: var(--lp-white);
}

.lp-mobile-menu__buttons {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 327px;
}

.lp-mobile-menu__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    padding: 10px 24px;
    height: 44px;
    border-radius: var(--lp-btn-radius);
    transition: opacity 0.2s ease;
}

.lp-mobile-menu__btn:hover {
    opacity: 0.9;
}

.lp-mobile-menu__btn--signin {
    background-color: var(--lp-blue-950);
    color: var(--lp-white);
}

.lp-mobile-menu__btn--signin:hover {
    color: var(--lp-white);
}

.lp-mobile-menu__btn--cta {
    background-color: var(--lp-white);
    color: var(--lp-blue-950);
}

.lp-mobile-menu__btn--cta:hover {
    color: var(--lp-blue-950);
}

.lp-mobile-menu__social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lp-mobile-menu__social-title {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--lp-white);
    text-align: center;
}

.lp-mobile-menu__social-icons {
    display: flex;
    gap: 24px;
}

.lp-mobile-menu__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--lp-white);
    border-radius: 40px;
    color: var(--lp-turquoise-500);
    transition: opacity 0.2s ease;
}

.lp-mobile-menu__social-link svg {
    width: 24px;
    height: 24px;
}

.lp-mobile-menu__social-link:hover {
    opacity: 0.9;
    color: var(--lp-turquoise-500);
}

/* ===========================================
   Footer
   =========================================== */

.lp-footer {
    background-color: var(--lp-blue-950);
    padding: 40px var(--lp-section-padding-x);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 991px) {
    .lp-footer {
        padding: 32px 48px;
    }
}

@media (max-width: 767px) {
    .lp-footer {
        padding: 24px 16px 48px;
    }
}

.lp-footer__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lp-footer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

@media (max-width: 767px) {
    .lp-footer__header {
        flex-direction: column;
        text-align: center;
    }
}

.lp-footer__logo {
    height: 80px;
    width: auto;
}

@media (max-width: 767px) {
    .lp-footer__logo {
        height: 55px;
    }
}

.lp-footer__social {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lp-footer__social-label {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--lp-white);
}

.lp-footer__social-icons {
    display: flex;
    gap: 24px;
}

.lp-footer__social-btn {
    width: 48px;
    height: 48px;
    border-radius: 40px;
    background-color: var(--lp-white);
    border: 1px solid var(--lp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, transform 0.2s;
}

.lp-footer__social-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.lp-footer__social-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--lp-turquoise-500);
}

.lp-footer__links {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
}

@media (max-width: 767px) {
    .lp-footer__links {
        width: 100%;
        max-width: 344px;
        margin: 0 auto;
    }
}

.lp-footer__links-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.lp-footer__links-title {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--lp-white);
    margin: 0;
}

@media (max-width: 767px) {
    .lp-footer__links-title {
        font-size: 16px;
        line-height: 24px;
    }
}

.lp-footer__links-grid {
    display: flex;
    gap: 40px;
}

@media (max-width: 767px) {
    .lp-footer__links-grid {
        flex-direction: column;
        gap: 16px;
    }
}

.lp-footer__links-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
}

@media (max-width: 767px) {
    .lp-footer__links-list {
        min-width: unset;
    }
}

.lp-footer__link {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--lp-white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.lp-footer__link:hover {
    opacity: 0.8;
    color: var(--lp-white);
}

@media (max-width: 767px) {
    .lp-footer__link {
        font-size: 16px;
        line-height: 24px;
    }
}

.lp-footer__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

@media (max-width: 991px) {
    .lp-footer__cards {
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .lp-footer__cards {
        flex-direction: column;
        gap: 16px;
    }
}

.lp-footer__card {
    flex: 1;
    min-width: 343px;
    background-color: #1D3E5D;
    border-radius: 9.75px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 767px) {
    .lp-footer__card {
        min-width: unset;
        width: 100%;
        padding: 16px;
    }
}

.lp-footer__card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-footer__card-title {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--lp-white);
    margin: 0;
}

@media (max-width: 767px) {
    .lp-footer__card-title {
        font-size: 16px;
        line-height: 24px;
    }
}

.lp-footer__card-text {
    font-family: var(--lp-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--lp-white);
    margin: 0;
}

@media (max-width: 767px) {
    .lp-footer__card-text {
        font-size: 14px;
        line-height: 20px;
    }
}

.lp-footer__card-text a {
    color: #FFD93F;
    text-decoration: none;
}

.lp-footer__card-text a:hover {
    text-decoration: underline;
}

.lp-footer__card-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--lp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, transform 0.2s;
    text-decoration: none;
}

.lp-footer__card-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.lp-footer__card-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke-width: 2px;
    stroke: var(--lp-blue-950);
}

.lp-footer__bottom {
    border-top: 1px solid #EDEFF2;
    padding-top: 24px;
    display: flex;
    justify-content: center;
}

.lp-footer__copyright {
    font-family: var(--lp-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--lp-white);
    text-align: center;
    margin: 0;
}

@media (max-width: 767px) {
    .lp-footer__copyright {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ===========================================
   Blog Page Layout
   =========================================== */

.blog-page {
    background: var(--blog-bg-blue);
    padding: var(--blog-page-padding-y) var(--blog-page-padding-x);
    display: flex;
    flex-direction: column;
    gap: var(--blog-section-gap);
}

@media (max-width: 991px) {
    .blog-page {
        padding: 60px 48px;
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .blog-page {
        padding: var(--blog-page-padding-y-mobile) var(--blog-page-padding-x-mobile);
        gap: 24px;
    }
}

.blog-page__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

@media (max-width: 767px) {
    .blog-page__header {
        gap: 16px;
    }
}

.blog-page__title {
    font-family: var(--lp-font-headline);
    font-size: var(--blog-title-size);
    font-weight: 700;
    line-height: var(--blog-title-line-height);
    color: var(--lp-blue-950);
    margin: 0;
}

@media (max-width: 991px) {
    .blog-page__title {
        font-size: 30px;
        line-height: 38px;
    }
}

@media (max-width: 767px) {
    .blog-page__title {
        font-size: 24px;
        line-height: 30px;
    }
}

.blog-page__subtitle {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--lp-gray-600);
    margin: 0;
}

@media (max-width: 767px) {
    .blog-page__subtitle {
        font-size: 16px;
        line-height: 24px;
    }
}

.blog-page__content {
    display: flex;
    gap: var(--blog-content-gap);
    align-items: flex-start;
}

@media (max-width: 767px) {
    .blog-page__content {
        flex-direction: column;
    }

    .blog-page__content .blog-sidebar {
        order: 2;
    }

    .blog-page__content .blog-page__main {
        order: 1;
    }
}

.blog-page__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--blog-content-gap);
}

@media (max-width: 767px) {
    .blog-page__main {
        width: 100%;
        max-width: none;
    }
}

.blog-page__count {
    font-family: var(--lp-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--lp-gray-600);
}

.blog-page__main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-page__main-title {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--lp-blue-950);
    margin: 0;
}

/* ===========================================
   Author Header
   =========================================== */

.blog-author-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 767px) {
    .blog-author-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

.blog-author-header__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .blog-author-header__avatar {
        width: 80px;
        height: 80px;
    }
}

.blog-author-header__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-author-header__name {
    font-family: var(--lp-font-headline);
    font-size: var(--blog-title-size);
    font-weight: 700;
    line-height: var(--blog-title-line-height);
    color: var(--lp-blue-950);
    margin: 0;
}

@media (max-width: 991px) {
    .blog-author-header__name {
        font-size: 30px;
        line-height: 38px;
    }
}

@media (max-width: 767px) {
    .blog-author-header__name {
        font-size: 24px;
        line-height: 30px;
    }
}

.blog-author-header__bio {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--lp-gray-600);
    margin: 0;
}

@media (max-width: 767px) {
    .blog-author-header__bio {
        font-size: 16px;
        line-height: 24px;
    }
}

.blog-author-header__count {
    font-family: var(--lp-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--lp-turquoise-500);
}

/* ===========================================
   Blog Sidebar
   =========================================== */

.blog-sidebar {
    width: var(--blog-sidebar-width);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: var(--blog-content-gap);
    padding-bottom: 16px;
}

@media (max-width: 767px) {
    .blog-sidebar {
        width: 100%;
        padding-bottom: 0;
    }
}

/* Search */
.blog-search {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.blog-search__input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    height: 48px;
    background: var(--lp-white);
    border: 1px solid var(--blog-border);
    border-radius: 24px;
    transition: border-color 0.2s ease;
}

.blog-search__input-wrapper:focus-within {
    border-color: var(--lp-turquoise-500);
}

.blog-search__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--lp-gray-600);
}

.blog-search__icon svg {
    width: 100%;
    height: 100%;
}

.blog-search__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--lp-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--lp-blue-950);
}

.blog-search__input::placeholder {
    color: var(--lp-gray-600);
}

/* Categories */
.blog-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-categories__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.blog-categories__title {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--lp-blue-950);
    margin: 0;
}

.blog-categories__view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 16px;
    background: var(--lp-blue-950);
    border: none;
    border-radius: 24px;
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--lp-white);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.blog-categories__view-btn:hover {
    opacity: 0.9;
}

.blog-categories__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 8px;
    border-left: 1px solid var(--lp-turquoise-500);
    list-style: none;
    margin: 0;
}

.blog-categories__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    border-radius: 4px;
    font-family: var(--lp-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--lp-gray-600);
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-categories__item:hover {
    background: rgba(8, 180, 156, 0.05);
}

.blog-categories__item.is-active,
.blog-categories__item--active {
    color: var(--lp-turquoise-500);
    background: var(--lp-white);
}

.blog-categories__name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-categories__count {
    flex-shrink: 0;
}

/* Filter Button */
.blog-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--lp-white);
    border: none;
    border-radius: 24px;
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--lp-blue-950);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.blog-filter-btn:hover {
    opacity: 0.9;
}

.blog-filter-btn__icon {
    width: 24px;
    height: 24px;
}

.blog-filter-btn__icon svg {
    width: 100%;
    height: 100%;
}

/* Filter Dropdown */
.blog-filter {
    position: relative;
}

.blog-filter__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--lp-white);
    border: none;
    border-radius: 24px;
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--lp-blue-950);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.blog-filter__toggle:hover {
    opacity: 0.9;
}

.blog-filter__toggle-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.blog-filter__toggle-icon svg {
    width: 100%;
    height: 100%;
}

.blog-filter.is-open .blog-filter__toggle-icon {
    transform: rotate(180deg);
}

.blog-filter__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--lp-white);
    border: 1px solid var(--blog-border);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.blog-filter.is-open .blog-filter__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.blog-filter__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: var(--lp-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--lp-gray-600);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-filter__item:hover {
    background: var(--blog-tag-bg);
    color: var(--lp-blue-950);
}

.blog-filter__item--active {
    color: var(--lp-turquoise-500);
    background: var(--blog-pagination-active);
}

.blog-filter__item--active:hover {
    color: var(--lp-turquoise-500);
    background: var(--blog-pagination-active);
}

.blog-filter__check {
    width: 16px;
    height: 16px;
    opacity: 0;
}

.blog-filter__item--active .blog-filter__check {
    opacity: 1;
}

/* ===========================================
   Blog Cards
   =========================================== */

.blog-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--blog-content-gap);
}

@media (max-width: 767px) {
    .blog-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.blog-cards--stacked {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-card {
    display: flex;
    gap: var(--blog-content-gap);
    padding: var(--blog-card-padding);
    background: var(--lp-white);
    border: 1px solid var(--blog-border);
    border-radius: var(--blog-card-radius);
    text-decoration: none;
    transition: box-shadow 0.2s ease;
}

.blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .blog-card {
        flex-direction: column;
    }
}

.blog-card__image {
    flex-shrink: 0;
    width: var(--blog-card-image-size);
    height: var(--blog-card-image-size);
    border-radius: var(--blog-card-radius);
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .blog-card__image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

.blog-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.blog-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    background: var(--blog-tag-bg);
    border-radius: 8px;
    font-family: var(--lp-font-body);
    font-size: var(--blog-helper-size);
    font-weight: 500;
    line-height: var(--blog-helper-line-height);
    color: var(--lp-blue-950);
    text-decoration: none;
}

@media (max-width: 767px) {
    .blog-card__tag {
        font-size: 10px;
    }
}

.blog-card__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-card__title {
    font-family: var(--lp-font-body);
    font-size: var(--blog-card-title-size);
    font-weight: 700;
    line-height: var(--blog-card-title-line-height);
    color: var(--lp-blue-950);
    margin: 0;
}

@media (max-width: 767px) {
    .blog-card__title {
        font-size: 16px;
        line-height: 24px;
    }
}

.blog-card__excerpt {
    font-family: var(--lp-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--lp-gray-600);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 767px) {
    .blog-card__excerpt {
        font-size: 14px;
        line-height: 20px;
    }
}

.blog-card__author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-card__author-info {
    display: flex;
    flex-direction: column;
}

.blog-card__author-name {
    font-family: var(--lp-font-body);
    font-size: var(--blog-helper-size);
    font-weight: 500;
    line-height: var(--blog-helper-line-height);
    color: var(--lp-blue-950);
}

@media (max-width: 767px) {
    .blog-card__author-name {
        font-size: 10px;
    }
}

.blog-card__author-date {
    font-family: var(--lp-font-body);
    font-size: var(--blog-helper-size);
    font-weight: 500;
    line-height: var(--blog-helper-line-height);
    color: var(--lp-gray-600);
}

@media (max-width: 767px) {
    .blog-card__author-date {
        font-size: 10px;
    }
}

/* Small Card (Similar Articles) */
.blog-card--small {
    gap: var(--blog-content-gap);
}

.blog-card--small .blog-card__image {
    width: var(--blog-card-image-size-small);
    height: var(--blog-card-image-size-small);
}

@media (max-width: 767px) {
    .blog-card--small .blog-card__image {
        width: var(--blog-card-image-size-small);
        height: var(--blog-card-image-size-small);
        aspect-ratio: auto;
    }
}

.blog-card--small .blog-card__content {
    gap: 16px;
}

.blog-card--small .blog-card__title {
    font-size: var(--blog-card-title-small-size);
    font-weight: 600;
    line-height: var(--blog-card-title-small-line-height);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card--small .blog-card__excerpt {
    display: none;
}

/* ===========================================
   Blog Pagination
   =========================================== */

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blog-pagination__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: var(--lp-white);
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.blog-pagination__arrow:hover:not(:disabled) {
    opacity: 0.8;
}

.blog-pagination__arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.blog-pagination__arrow svg {
    width: 24px;
    height: 24px;
    color: var(--lp-blue-950);
}


.blog-pagination__pages {
    display: flex;
    align-items: center;
}

.blog-pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 24px;
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--lp-blue-950);
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-pagination__page:hover:not(.is-active):not(.blog-pagination__page--active) {
    background: rgba(8, 180, 156, 0.1);
}

.blog-pagination__page.is-active,
.blog-pagination__page--active {
    background: var(--blog-pagination-active);
    color: var(--lp-turquoise-500);
}

@media (max-width: 767px) {
    .blog-pagination__page {
        min-width: 40px;
        padding: 8px 16px;
        font-size: 16px;
    }
}

.blog-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 12px 24px;
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--lp-blue-950);
}

@media (max-width: 767px) {
    .blog-pagination__ellipsis {
        min-width: 40px;
        padding: 8px 16px;
        font-size: 16px;
    }
}

/* ===========================================
   Blog Article Page
   =========================================== */

.blog-article {
    background: var(--blog-bg-gray);
    padding: 40px var(--blog-page-padding-x);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (max-width: 991px) {
    .blog-article {
        padding: 32px 48px;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .blog-article {
        padding: 20px var(--blog-page-padding-x-mobile);
        gap: 20px;
    }
}

.blog-article__wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 991px) {
    .blog-article__wrapper {
        flex-direction: column;
        gap: 32px;
    }
}

.blog-article__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1049px;
}

@media (max-width: 767px) {
    .blog-article__content {
        gap: 24px;
    }
}

.blog-article__sidebar {
    width: var(--blog-similar-width);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: var(--blog-content-gap);
}

@media (max-width: 991px) {
    .blog-article__sidebar {
        width: 100%;
    }
}

.blog-article__sidebar-title {
    font-family: var(--lp-font-headline);
    font-size: var(--blog-section-title-size);
    font-weight: 700;
    line-height: var(--blog-section-title-line-height);
    color: var(--lp-blue-950);
    margin: 0;
}

@media (max-width: 767px) {
    .blog-article__sidebar-title {
        font-size: 24px;
        line-height: 30px;
    }
}

/* Article Header */
.blog-article__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-article__title {
    font-family: var(--lp-font-headline);
    font-size: var(--blog-title-size);
    font-weight: 700;
    line-height: var(--blog-title-line-height);
    color: var(--lp-blue-950);
    margin: 0;
}

@media (max-width: 991px) {
    .blog-article__title {
        font-size: 30px;
        line-height: 38px;
    }
}

@media (max-width: 767px) {
    .blog-article__title {
        font-size: 24px;
        line-height: 30px;
    }
}

.blog-article__lead {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--lp-blue-950);
    margin: 0;
}

@media (max-width: 767px) {
    .blog-article__lead {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Featured Image */
.blog-article__featured-image {
    width: 100%;
    border-radius: var(--blog-card-radius);
    overflow: hidden;
}

.blog-article__featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Body */
.blog-article__body {
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--lp-blue-950);
}

@media (max-width: 767px) {
    .blog-article__body {
        font-size: 16px;
        line-height: 24px;
    }
}

.blog-article__body p {
    margin: 12px 0 12px 0;
}

.blog-article__body p:last-child {
    margin-bottom: 0;
}

.blog-article__body h2,
.blog-article__body h3,
.blog-article__body h4 {
    font-weight: 700;
    margin: 24px 0 8px 0;
}

.blog-article__body h2:first-child,
.blog-article__body h3:first-child,
.blog-article__body h4:first-child {
    margin-top: 0;
}

.blog-article__body ol {
    margin: 0 0 5px 0;
    padding-left: 0;
    list-style: decimal;
}

.blog-article__body ol li {
    margin-bottom: 0;
    margin-left: 27px;
}

.blog-article__body ol li:last-child {
    margin-bottom: 0;
}

.blog-article__body ul {
    margin: 0 0 5px 0;
    padding-left: 0;
}

.blog-article__body ul li {
    margin-bottom: 0;
    margin-left: 27px;
}

.blog-article__body ul li:last-child {
    margin-bottom: 0;
}

.blog-article__body a {
    color: var(--lp-turquoise-500);
    text-decoration: underline;
}

.blog-article__body a:hover {
    text-decoration: none;
}

.blog-article__body strong,
.blog-article__body b {
    font-weight: 700;
}

/* Image Captions */
.blog-article__body figcaption,
.blog-article__body .wp-caption-text,
.blog-article__body .wp-element-caption {
    font-family: var(--lp-font-body);
    font-size: var(--lp-caption-size);
    font-weight: var(--lp-caption-weight);
    line-height: var(--lp-caption-line-height);
    color: var(--lp-gray-500);
    font-style: italic;
    text-align: center;
    margin-top: 8px;
}

.blog-article__body figure {
    margin: 24px 0;
}

.blog-article__body figure img {
    display: block;
    margin: 0 auto;
}

/* ===========================================
   Blog Breadcrumbs
   =========================================== */

.blog-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.blog-breadcrumbs__item {
    font-family: var(--lp-font-body);
    font-size: var(--blog-helper-size);
    font-weight: 500;
    line-height: var(--blog-helper-line-height);
    color: var(--lp-gray-600);
    text-decoration: none;
    white-space: nowrap;
}

.blog-breadcrumbs__item:hover {
    color: var(--lp-turquoise-500);
}

.blog-breadcrumbs__separator {
    font-family: var(--lp-font-body);
    font-size: var(--blog-helper-size);
    font-weight: 500;
    line-height: var(--blog-helper-line-height);
    color: var(--lp-gray-600);
}

.blog-breadcrumbs__current {
    font-family: var(--lp-font-body);
    font-size: var(--blog-helper-size);
    font-weight: 500;
    line-height: var(--blog-helper-line-height);
    color: var(--lp-gray-600);
}

/* ===========================================
   Blog Status Bar
   =========================================== */

.blog-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 767px) {
    .blog-statusbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

.blog-statusbar__author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-statusbar__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-statusbar__author-info {
    display: flex;
    flex-direction: column;
}

.blog-statusbar__author-name {
    font-family: var(--lp-font-body);
    font-size: var(--blog-helper-size);
    font-weight: 500;
    line-height: var(--blog-helper-line-height);
    color: var(--lp-blue-950);
}

.blog-statusbar__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--lp-font-body);
    font-size: var(--blog-helper-size);
    font-weight: 500;
    line-height: var(--blog-helper-line-height);
    color: var(--lp-gray-600);
}

.blog-statusbar__meta-item {
    white-space: nowrap;
}

.blog-statusbar__categories {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-statusbar__categories-label {
    font-family: var(--lp-font-body);
    font-size: var(--blog-helper-size);
    font-weight: 500;
    line-height: var(--blog-helper-line-height);
    color: var(--lp-blue-950);
}

.blog-statusbar__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    background: var(--blog-tag-bg);
    border-radius: 16px;
    font-family: var(--lp-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--lp-blue-950);
    text-decoration: none;
}

.blog-statusbar__category:hover {
    opacity: 0.9;
}

.blog-statusbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 767px) {
    .blog-statusbar__actions {
        width: 100%;
    }
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--lp-turquoise-500);
    border: none;
    border-radius: 24px;
    font-family: var(--lp-font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--lp-white);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.blog-share-btn:hover {
    opacity: 0.9;
    color: var(--lp-white);
}

.blog-share-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 767px) {
    .blog-share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================================
   WordPress Specific Overrides
   =========================================== */

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Skip link */
.skip-link {
    background-color: var(--lp-blue-950);
    color: var(--lp-white);
    padding: 8px 16px;
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 100000;
}

.skip-link:focus {
    top: 0;
}

/* Alignments */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

/* WordPress Core Blocks */
.wp-block-image {
    margin-bottom: 1.5em;
}

.wp-block-image img {
    border-radius: var(--blog-card-radius);
}
