.page-hero {
    padding: 140px 0 70px;
}

.blog-grid-sec {
    background: var(--dark2);
    padding: 70px 0 90px;
}

.blog-card-wide {
    display: block;
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, .05);
    overflow: hidden;
    margin-bottom: 20px;
    color: inherit;
    transition: border-color .35s, box-shadow .35s;
}

.blog-card-wide:hover {
    border-color: rgba(184, 150, 62, .35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}

.blog-card-wide .blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-wide .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
    filter: brightness(.85);
}

.blog-card-wide:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-wide .blog-card-body {
    padding: 24px 28px;
}

.featured-sec {
    background: var(--dark);
    padding: 60px 0 0;
}

.featured-card {
    display: block;
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, .06);
    overflow: hidden;
    color: inherit;
    transition: border-color .35s;
    margin-bottom: 0;
}

.featured-card:hover {
    border-color: rgba(184, 150, 62, .4);
}

.fc-img {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.fc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s;
    filter: brightness(.7);
}

.featured-card:hover .fc-img img {
    transform: scale(1.04);
}

.fc-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--dark);
    padding: 5px 12px;
}

.fc-body {
    padding: 30px 32px;
}

.fc-cat {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.fc-body h2 {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.fc-body>p {
    font-size: 13px;
    color: var(--txt2);
    line-height: 1.8;
    margin-bottom: 20px;
}

.fc-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fc-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.fc-author-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
}

.fc-date {
    font-size: 10px;
    color: var(--txt2);
}

.fc-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 16px;
    transition: gap .3s;
}

.fc-read-more:hover {
    gap: 14px;
}

.sidebar-widget {
    background: var(--dark3);
    border: 1px solid rgba(184, 150, 62, .1);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(184, 150, 62, .15);
}

.sidebar-search {
    display: flex;
}

.sidebar-search input {
    flex: 1;
    background: var(--dark4);
    border: 1px solid rgba(184, 150, 62, .18);
    border-right: none;
    color: var(--white);
    padding: 11px 14px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.sidebar-search input:focus {
    border-color: rgba(184, 150, 62, .45);
}

.sidebar-search button {
    background: var(--gold);
    border: none;
    color: var(--dark);
    padding: 11px 16px;
    cursor: pointer;
    font-size: 13px;
}

.sidebar-search button:hover {
    background: var(--gold-lt);
}

.recent-post {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rp-img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.rp-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--txt);
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color .2s;
}

.rp-title:hover {
    color: var(--gold);
}

.rp-date {
    font-size: 10px;
    color: var(--txt2);
}

.cat-list {
    list-style: none;
}

.cat-list li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    display: flex;
    justify-content: space-between;
}

.cat-list li:last-child {
    border-bottom: none;
}

.cat-list a {
    font-size: 12px;
    color: var(--txt2);
    transition: color .2s;
}

.cat-list a:hover {
    color: var(--gold);
}

.cat-count {
    font-size: 10px;
    color: var(--txt2);
}

@media(max-width:992px) {
    .fc-img {
        height: 260px;
    }
}