/* Modern News Design - Blue Ice Theme */

/* Header */
.modern-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 5px;
}

.modern-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-crimson) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    /* Muted Silver */
    color: var(--color-silver);
    border: 1px solid rgba(191, 201, 202, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.modern-view-all:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background: rgba(90, 13, 13, 0.2);
}

.modern-view-all span {
    font-size: 13px;
    font-weight: 500;
}

.icon-chevron-right {
    height: 16px;
    width: 16px;
    transition: transform 0.3s;
}

.modern-view-all:hover .icon-chevron-right {
    transform: translateX(3px);
}

/* Featured Card */
.modern-featured-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    /* Abyssal BG */
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6) 0%, rgba(52, 73, 94, 0.8) 100%);
    /* Crimson Border */
    border: 1px solid rgba(165, 42, 42, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    text-decoration: none !important;
    height: 100%;
}

.featured-image-container {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.modern-featured-card:hover .featured-image {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* Gradient to Deep Crimson/Black */
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(90, 13, 13, 0.3) 40%, rgba(5, 5, 5, 0.95) 100%);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
}

.featured-badge {
    display: inline-block;
    padding: 4px 12px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
    border-radius: 20px;
    /* Gold Badge */
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(211, 84, 0, 0.4);
}

.featured-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: rgb(240, 240, 240);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin: 0 0 12px 0;
    transition: color 0.3s;
    line-height: 1.2;
}

.modern-featured-card:hover .featured-title {
    color: var(--color-gold);
    /* Hover Gold */
}

.featured-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgb(150, 170, 190);
    font-size: 13px;
}

.icon-calendar {
    margin-right: 8px;
    color: var(--color-orange);
}

.featured-desc {
    color: rgb(150, 170, 190);
    font-size: 15px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.9;
}

.read-more {
    display: flex;
    align-items: center;
    color: var(--color-gold);
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 5px;
}

.icon-chevron {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.modern-featured-card:hover .icon-chevron {
    transform: translateX(5px);
}

.hover-glow {
    position: absolute;
    inset: 0;
    /* Ember Glow */
    background: radial-gradient(circle, rgba(165, 42, 42, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.modern-featured-card:hover .hover-glow {
    opacity: 1;
}

/* List Cards */
.hero-news-flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.hero-news-flex-row>.col-md-8,
.hero-news-flex-row>.col-md-4 {
    display: flex;
    flex-direction: column;
}

.modern-news-list {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.modern-list-card {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* Abyssal BG */
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(52, 73, 94, 0.5) 100%);
    border: 1px solid rgba(165, 42, 42, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-decoration: none !important;
    height: 100%;
    flex: 1;
}

.list-image-container {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.list-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.modern-list-card:hover .list-image {
    transform: scale(1.1);
}

.list-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(9, 12, 18, 0.8) 100%);
}

.list-content {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.list-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: rgb(240, 240, 240);
    margin: 0 0 10px 0;
    transition: color 0.3s;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-list-card:hover .list-title {
    color: var(--color-gold);
}

.list-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: rgb(150, 170, 190);
    font-size: 13px;
}

.list-desc {
    color: rgb(150, 170, 190);
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.9;
    line-height: 1.5;
}

.icon-calendar-sm {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    color: var(--color-orange);
}

.read-more-sm {
    display: flex;
    align-items: center;
    color: var(--color-gold);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    gap: 4px;
    margin-top: auto;
}

.icon-chevron-sm {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.modern-list-card:hover .icon-chevron-sm {
    transform: translateX(3px);
}

.hover-glow-sm {
    position: absolute;
    inset: 0;
    /* Ember Glow */
    background: radial-gradient(circle, rgba(165, 42, 42, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.modern-list-card:hover .hover-glow-sm {
    opacity: 1;
}

/* Responsiveness adjustments */
@media (max-width: 991px) {
    .modern-news-list {
        margin-top: 20px;
        height: auto;
    }

    .modern-featured-card {
        height: auto;
    }

    .featured-image-container {
        height: 250px;
    }

    .modern-list-card {
        height: auto;
    }
}