/* News Cards */
.news-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    z-index: 10;
    display: flex;
    flex-direction: column; 
}

.news-card:hover {
    transform: translateY(-0.5rem);
}

.news-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
    min-height: 25rem;
    align-items: stretch;
}

.news-content-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 20rem;
}

.news-title {
    font-size: 1.125rem;
    font-family: var(--font-sf-pro);
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: 0.5rem;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-sf-pro);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
}
