/* Blog pages */
.blog-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?w=1800&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(26, 18, 4, .93) 0%, rgba(26, 18, 4, .78) 56%, rgba(201, 162, 39, .22) 100%);
}

.blog-hero-inner {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4rem;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 1.1rem;
}

.blog-breadcrumb a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .2s;
}

.blog-breadcrumb a:hover {
    color: var(--gold-lt);
}

.blog-breadcrumb .sep {
    color: var(--gold);
    font-size: .6rem;
}

.blog-breadcrumb .current {
    color: var(--gold-lt);
}

.blog-wrap {
    padding: 4.2rem 0 4.8rem;
    background: linear-gradient(180deg, var(--off) 0%, #fff 45%, var(--off2) 100%);
}

.blog-headline {
    max-width: 620px;
}

.blog-search {
    position: relative;
}

.blog-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-dk);
    font-size: .9rem;
}

.blog-search input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 34px;
    padding: .82rem 1rem .82rem 2.6rem;
    font-size: .88rem;
    font-weight: 600;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.blog-search input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, .12);
}

.blog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.3rem;
}

.blog-cat {
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 22px;
    padding: .52rem 1rem;
    transition: all .2s;
    cursor: pointer;
}

.blog-cat.active,
.blog-cat:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.blog-grid {
    margin-top: 2.2rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-soft);
    box-shadow: var(--shadow-lg);
}

.blog-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.06);
}

.blog-chip {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(26, 18, 4, .84);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    border-radius: 20px;
    padding: .32rem .74rem;
}

.blog-body {
    padding: 1.25rem 1.2rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .85rem;
    margin-bottom: .7rem;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.blog-meta i {
    color: var(--gold);
    font-size: .7rem;
}

.blog-title {
    font-size: 1.5rem;
    line-height: 1.24;
    margin-bottom: .72rem;
}

.blog-excerpt {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.blog-read {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--gold-dk);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
}

.blog-read i {
    transition: transform .2s;
}

.blog-read:hover {
    color: var(--gold-dk);
}

.blog-read:hover i {
    transform: translateX(3px);
}

.blog-pagination {
    margin-top: 2.1rem;
    display: flex;
    justify-content: center;
    gap: .5rem;
}

.blog-page {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.blog-page.active,
.blog-page:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.blog-article-section {
    padding: 4rem 0 4.8rem;
    background: linear-gradient(180deg, var(--off) 0%, #fff 52%, var(--off2) 100%);
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
}

.blog-article {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-article-cover {
    width: 100%;
    aspect-ratio: 16/8;
    object-fit: cover;
}

.blog-article-main {
    padding: 1.8rem 1.8rem 1.6rem;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: .8rem;
}

.blog-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: .34rem;
    color: var(--muted);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-article-meta i {
    color: var(--gold);
    font-size: .7rem;
}

.blog-article-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.blog-article-main p {
    color: var(--muted);
    line-height: 1.9;
    font-size: .95rem;
    margin-bottom: 1rem;
}

.blog-highlight {
    background: linear-gradient(135deg, var(--gold-pale) 0%, #fff 100%);
    border: 1px solid var(--gold-soft);
    border-radius: 16px;
    padding: 1.2rem 1.1rem;
    margin: 1.2rem 0;
}

.blog-highlight h4 {
    font-size: 1.22rem;
    margin-bottom: .55rem;
}

.blog-points {
    list-style: none;
    margin: .2rem 0 1.2rem;
    padding: 0;
    display: grid;
    gap: .55rem;
}

.blog-points li {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    color: var(--text);
    font-size: .92rem;
    font-weight: 600;
}

.blog-points i {
    color: var(--gold);
    margin-top: .18rem;
}

.blog-tags {
    margin-top: 1.3rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.blog-tags span {
    font-size: .67rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: .3rem .72rem;
    border-radius: 14px;
    background: #fff;
}

.blog-aside {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.blog-widget {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.blog-widget h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .84rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin-bottom: .8rem;
    font-weight: 800;
}

.blog-related {
    display: grid;
    gap: .8rem;
}

.blog-related-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: .72rem;
    text-decoration: none;
    color: inherit;
}

.blog-related-item img {
    width: 100%;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-related-item h6 {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: .25rem;
}

.blog-related-item span {
    color: var(--muted);
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--dark) 0%, var(--dark-mid) 100%);
    border-radius: 16px;
    padding: 1.35rem 1.15rem;
}

.blog-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 0%, rgba(201, 162, 39, .22) 0%, transparent 62%);
}

.blog-cta h5,
.blog-cta p,
.blog-cta .btn-gold {
    position: relative;
    z-index: 1;
}

.blog-cta p {
    color: rgba(255, 255, 255, .78);
    font-size: .84rem;
    line-height: 1.75;
    margin-bottom: .9rem;
}

@media (max-width: 991.98px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 1.38rem;
    }

    .blog-article-main {
        padding: 1.2rem 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .blog-cats {
        gap: .45rem;
    }

    .blog-cat {
        padding: .48rem .78rem;
        font-size: .68rem;
    }

    .blog-article-title {
        font-size: 1.7rem;
    }
}
