/**
 * GC Theme — Hero News
 *
 * Used by [gc_hero_news] shortcode. Three-column hero
 * news layout: left sidebar list, center hero post,
 * right sidebar list.
 *
 * @package GC_Theme
 */

/* ── GC Hero News ── */
.gc-hn-wrap {
    margin: 32px 0;
}

.gc-hn-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
    padding-bottom: 14px;
}

.gc-hn-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--gc-navy-deep) !important;
    margin: 0 !important;
}

.gc-hn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gc-primary) !important;
    text-decoration: none !important;
    border: none !important;
    background: transparent;
    padding: 0;
}

.gc-hn-btn-arrow {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gc-hn-btn:hover .gc-hn-btn-arrow {
    transform: translateX(5px);
}

.gc-hn-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 24px;
}

/* Cat label */
.gc-hn-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--gc-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gc-hn-meta {
    font-size: 11px;
    color: var(--gc-text-muted);
}

/* Placeholder */
.gc-hn-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gc-border);
}

/* LEFT */
.gc-hn-left {
    display: flex;
    flex-direction: column;
	   overflow: hidden;
    max-height: none;
	 
}

.gc-hn-card-sm:nth-child(n+3) {
    display: none;
}

.gc-hn-card-sm {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none !important;
}

.gc-hn-card-sm-img {
    width: 100%;
    aspect-ratio: 1200/628;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gc-bg);
}

.gc-hn-card-sm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gc-hn-card-sm-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gc-hn-card-sm-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gc-navy-deep);
    line-height: 1.4;
}

.gc-hn-card-sm:hover .gc-hn-card-sm-title {
    color: var(--gc-primary);
}

/* HERO CENTER */
.gc-hn-hero {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none !important;
}

.gc-hn-hero-img {
    width: 100%;
    aspect-ratio: 1200/628;
    border-radius: 10px;
    overflow: hidden;
    background: var(--gc-bg);
    position: relative;
}

.gc-hn-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gc-hn-breaking {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gc-danger);
    color: var(--gc-text-inverse);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 2px 5px;
    border-radius: 7px;
    z-index: 1;
}

.gc-hn-hero-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gc-hn-hero-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--gc-navy-deep) !important;
    line-height: 1.35 !important;
    margin: 0 !important;
}

.gc-hn-hero:hover .gc-hn-hero-title {
    color: var(--gc-primary) !important;
}

.gc-hn-hero-excerpt {
    font-size: 13px;
    color: var(--gc-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* RIGHT */
.gc-hn-right {
    display: flex;
    flex-direction: column;
}

.gc-hn-right-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--gc-bg-soft);
    text-decoration: none !important;
}

.gc-hn-right-item:first-child { padding-top: 0; }
.gc-hn-right-item:last-child { border-bottom: none; }

.gc-hn-right-thumb {
    width: 64px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--gc-bg);
    flex-shrink: 0;
}

.gc-hn-right-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gc-hn-right-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.gc-hn-right-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gc-navy-deep);
    line-height: 1.4;
}

.gc-hn-right-item:hover .gc-hn-right-title {
    color: var(--gc-primary);
}

/* Responsive */
@media (max-width: 900px) {
    .gc-hn-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gc-hn-right {
        display: none;
    }
}

@media (max-width: 600px) {
    .gc-hn-grid {
        grid-template-columns: 1fr;
    }
    .gc-hn-left {
        display: none;
    }
}
```

Употреба:
```
[gc_hero_news title="Latest iGaming News" all_news_url="/news/"]