/* What's New Section Styles */
.whatsnew-section {
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 2.2rem;
}

@media (max-width: 991px) {
    .whatsnew-section {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.whatsnew-featured {
    background: #fff;
    border-radius: 1.3rem;
    box-shadow: 0 2px 16px rgba(30, 40, 90, 0.09);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.whatsnew-featured-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-top-left-radius: 1.3rem;
    border-top-right-radius: 1.3rem;
    position: relative;
}

.whatsnew-category-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #1e5bff;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 600;
    padding: 0.38rem 1.1rem;
    border-radius: 1.2rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(30, 40, 90, 0.13);
    letter-spacing: 0.5px;
}

.whatsnew-featured-body {
    padding: 1.5rem 1.5rem 1.1rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.whatsnew-featured-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1a2233;
    margin-bottom: 0.7rem;
    line-height: 1.2;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.whatsnew-featured-excerpt {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 1.1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.whatsnew-featured-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.97rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: auto;
}

.whatsnew-featured-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.whatsnew-list {
    background: #fff;
    border-radius: 1.3rem;
    box-shadow: 0 2px 12px rgba(30, 40, 90, 0.07);
    padding: 1.2rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.whatsnew-list-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 0.7rem;
}

.whatsnew-list-item:last-child {
    border-bottom: none;
}

.whatsnew-list-thumb {
    width: 62px;
    height: 62px;
    border-radius: 0.7rem;
    object-fit: cover;
    background: #e9ecef;
}

.whatsnew-list-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.whatsnew-list-category {
    font-size: 0.93rem;
    font-weight: 600;
    color: #1e5bff;
    margin-bottom: 0.1rem;
}

.whatsnew-list-title {
    font-size: 1.07rem;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.whatsnew-list-date {
    font-size: 0.97rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

@media (max-width: 991px) {
    .whatsnew-featured-title {
        font-size: 1.3rem;
    }

    .whatsnew-featured-excerpt {
        font-size: 0.97rem;
    }

    .whatsnew-section {
        grid-template-columns: 1fr;
    }
}