/* GCCS News & Updates */
.gccs-news-wrap {
    font-family: 'Poppins', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── TABS ── */
.gccs-news-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.gccs-news-tab {
    padding: 10px 22px;
    border: 1.5px solid #e0e8ed;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #5d6d7e;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    --tab-color: #0b2a4a;
}

.gccs-news-tab:hover {
    border-color: var(--tab-color);
    color: var(--tab-color);
}

.gccs-news-tab.active {
    background: #0b2a4a;
    border-color: #0b2a4a;
    color: #fff;
    --tab-color: #fff;
}

/* ── GRID ── */
.gccs-news-grid {
    display: grid;
    gap: 20px;
}

.gccs-news-cols-2 { grid-template-columns: repeat(2, 1fr); }
.gccs-news-cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ── CARD ── */
.gccs-news-card {
    background: #fff;
    border: 1px solid #e0e8ed;
    border-radius: 14px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    animation: gccs-news-fadeIn 0.35s ease both;
}

.gccs-news-card:hover {
    border-color: #48b4a0;
    box-shadow: 0 6px 24px rgba(72,180,160,0.1);
    transform: translateY(-2px);
}

.gccs-news-card.hidden {
    display: none;
}

@keyframes gccs-news-fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

/* ── CARD TOP ── */
.gccs-news-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.gccs-news-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gccs-news-cat-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
}

.gccs-news-cat-icon svg {
    width: 16px;
    height: 16px;
}

.gccs-news-date {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 500;
    white-space: nowrap;
}

/* ── CARD CONTENT ── */
.gccs-news-card-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: #0b2a4a;
    margin-bottom: 10px;
}

.gccs-news-card-title a {
    color: inherit;
    text-decoration: none;
}

.gccs-news-card-title a:hover {
    color: #48b4a0;
}

.gccs-news-card-excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: #5d6d7e;
    flex: 1;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── READ MORE ── */
.gccs-news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.gccs-news-read-more:hover {
    gap: 10px;
}

.gccs-news-read-more svg {
    transition: transform 0.2s ease;
}

.gccs-news-read-more:hover svg {
    transform: translateX(2px);
}

/* ── EMPTY ── */
.gccs-news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: #a0aec0;
    font-size: 15px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .gccs-news-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .gccs-news-cols-2,
    .gccs-news-cols-3 { grid-template-columns: 1fr; }
    .gccs-news-tabs { gap: 6px; }
    .gccs-news-tab { padding: 8px 16px; font-size: 12px; }
    .gccs-news-card { padding: 22px 20px; }
    .gccs-news-card-title { font-size: 15px; }
}
