:root {
    --pale-tiffany: #E0F2F1;
    --soft-gold: #FFB800;
    --light-tiffany: #A6E3DD;
}

.news-card {
    background: var(--pale-tiffany, #E0F2F1);
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-card-date {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--tiffany-blue, #81D8D0);
    color: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.news-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 12px;
}
.news-card-desc {
    color: #5B6B7A;
    font-size: 1rem;
    margin-bottom: 18px;
}
.news-card-link {
    color: var(--soft-gold, #FFB800);
    font-weight: 500;
    text-decoration: none;
}
.news-list-vertical {
    max-width: 1200px;
    margin: 0 auto;
}
.news-vertical-card {
    background: var(--pale-tiffany, #E0F2F1);
    border-radius: 16px;
    box-shadow: 4px 4px 12px rgba(94,191,183,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: stretch;
    height: auto;
}
.news-vertical-card:hover {
    box-shadow: 6px 6px 24px rgba(94,191,183,0.25);
    transform: scale(1.02);
}
.news-vertical-img-wrap {
    position: relative;
    min-height: 0;
    width: 40%;
    max-width: 40%;
    flex-basis: 40%;
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
}
.news-vertical-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}
.news-vertical-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--light-tiffany, #A6E3DD);
    color: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(44,62,80,0.08);
}
.news-vertical-date-day {
    font-size: 1.4rem;
    line-height: 1;
}
.news-vertical-date-month {
    font-size: 0.95rem;
    line-height: 1.2;
    letter-spacing: 1px;
}
.news-vertical-title {
    font-size: 1.5rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 1rem;
}
.news-vertical-desc {
    color: var(--dark-tiffany, #5EBFB7);
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
}
.news-vertical-card .btn-primary {
    background: var(--soft-gold, #FFB800);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.5rem 2rem;
    transition: background 0.2s;
}
.news-vertical-card .btn-primary:hover {
    background: #e6a700;
}
@media (max-width: 768px) {
    .news-vertical-card .row {
        flex-direction: column;
    }
    .news-vertical-img-wrap {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        height: 160px;
        min-height: 160px;
    }
    .news-vertical-title {
        font-size: 1.15rem;
    }
}
