/* HERO SECTION */
.hero {
    margin-bottom: 2.5rem;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

@media(min-width:1024px) {
    .hero__grid {
        grid-template-columns: 2fr 1fr;
    }
}

.hero__featured {
    position: relative;
    overflow: hidden;
    height: 400px;
}

@media(min-width:1024px) {
    .hero__featured {
        height: 500px;
    }
}

.hero__featured a {
    display: block;
    height: 100%;
    width: 100%;
}

.hero__featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.hero__featured:hover img {
    transform: scale(1.05);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .9), rgba(0, 0, 0, .4) 50%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    pointer-events: none;
}

@media(min-width:1024px) {
    .hero__overlay {
        padding: 2rem;
    }
}

.hero__overlay .category-badge {
    display: inline-block;
    background: var(--gb-red);
    color: #fff;
    font-size: .625rem;
    font-weight: 700;
    padding: .25rem .5rem;
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    align-self: flex-start;
}

.hero__overlay h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: .5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

@media(min-width:1024px) {
    .hero__overlay h2 {
        font-size: 2.25rem;
    }
}

.hero__featured:hover .hero__overlay h2 {
    color: var(--gb-yellow);
}

.hero__overlay .meta {
    color: var(--gray-300);
    font-size: .875rem;
    display: flex;
    gap: 1rem;
    margin-top: .5rem;
}

.hero__secondary {
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 500px;
}

.hero__secondary-item {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.hero__secondary-item a {
    display: block;
    height: 100%;
    width: 100%;
}

.hero__secondary-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.hero__secondary-item:hover img {
    transform: scale(1.05);
}

.hero__secondary-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .9), rgba(0, 0, 0, .2) 60%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    pointer-events: none;
}

.hero__secondary-overlay .category-badge {
    display: inline-block;
    background: var(--gb-green);
    color: #fff;
    font-size: .625rem;
    font-weight: 700;
    padding: .125rem .5rem;
    margin-bottom: .5rem;
    text-transform: uppercase;
    align-self: flex-start;
}

.hero__secondary-overlay h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero__secondary-item:hover .hero__secondary-overlay h3 {
    color: var(--gb-yellow);
}

/* SECTION HEADERS */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--gray-100);
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gray-900);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.section-header h2 .accent-bar {
    display: inline-block;
    width: .75rem;
    height: 2rem;
}

.section-header .accent-bar--red {
    background: var(--gb-red);
}

.section-header .accent-bar--yellow {
    background: var(--gb-yellow);
}

.section-header .accent-bar--green {
    background: var(--gb-green);
}

.section-header .view-all {
    font-size: .75rem;
    font-weight: 700;
    color: var(--gray-500);
    display: flex;
    align-items: center;
}

.section-header .view-all:hover {
    color: var(--gb-red);
}

.section-header--yellow {
    border-bottom-color: var(--gb-yellow);
}

.section-header--green {
    border-bottom-color: var(--gb-green);
}

/* ARTICLE CARD — GRID */
.article-card {
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow .3s;
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.article-card__image {
    position: relative;
    overflow: hidden;
    height: 12rem;
}

@media(min-width:640px) {
    .article-card__image {
        height: 14rem;
    }
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.article-card:hover .article-card__image img {
    transform: scale(1.05);
}

.article-card__image .category-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gb-red);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.article-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card__meta {
    display: flex;
    align-items: center;
    font-size: .75rem;
    color: var(--gray-500);
    margin-bottom: .75rem;
    gap: 1rem;
}

.article-card__meta span {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.article-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: .5rem;
    transition: color .3s;
}

.article-card__title a {
    color: inherit;
}

.article-card:hover .article-card__title {
    color: var(--gb-red);
}

.article-card__excerpt {
    color: var(--gray-600);
    font-size: .875rem;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card__read-more {
    display: inline-flex;
    align-items: center;
    font-size: .875rem;
    font-weight: 600;
    color: var(--gb-green);
    margin-top: auto;
    transition: color .3s;
}

.article-card__read-more:hover {
    color: var(--gb-red);
}

/* ARTICLE CARD — MINIMAL */
.article-card-minimal {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.article-card-minimal:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.article-card-minimal__image {
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: .25rem;
    background: var(--gray-200);
}

.article-card-minimal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.article-card-minimal:hover .article-card-minimal__image img {
    transform: scale(1.1);
}

.article-card-minimal__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-card-minimal__title {
    font-size: .875rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .3s;
}

.article-card-minimal__title a {
    color: inherit;
}

.article-card-minimal:hover .article-card-minimal__title {
    color: var(--gb-red);
}

.article-card-minimal__date {
    font-size: .75rem;
    color: var(--gray-500);
    margin-top: .25rem;
    display: flex;
    align-items: center;
    gap: .25rem;
}

/* ARTICLES GRID */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media(min-width:768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.articles-grid--3col {
    grid-template-columns: 1fr;
}

@media(min-width:768px) {
    .articles-grid--3col {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width:768px) {
    .category-sections {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ad-banner {
    width: 100%;
    height: 8rem;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    border: 1px dashed var(--gray-300);
    border-radius: .5rem;
}