/* ========================================
   TOP: News Section
   ======================================== */

.fp-news {
    padding: 64px 0;
    background: linear-gradient(135deg, #002040 0%, #002d5c 50%, #002040 100%);
    position: relative;
    overflow: hidden;
}

/* Dot pattern overlay */
.fp-news__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 1px 1px, rgba(207, 255, 4, 0.15) 1px, transparent 0);
    background-size: 48px 48px;
    pointer-events: none;
}

/* Header */
.fp-news__header {
    margin-bottom: 32px;
}

.fp-news__title {
    font-size: 28px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

/* Card list */
.fp-news__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Card */
.fp-news__card {
    display: block;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fp-news__card:hover {
    border-color: #CCFF00;
    box-shadow: var(--fp-shadow-card-hover, 0 8px 32px rgba(204, 255, 0, 0.15));
    transform: translateY(-4px);
}

/* Card inner layout */
.fp-news__card-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Meta (date + badge) */
.fp-news__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 200px;
}

.fp-news__date {
    color: #D1D5DC;
    font-size: 16px;
    white-space: nowrap;
    min-width: 90px;
}

/* Badge */
.fp-news__badge {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 9999px;
    white-space: nowrap;
    min-width: 70px;
    text-align: center;
}

.fp-news__badge--event {
    background: rgba(204, 255, 0, 0.2);
    color: #CCFF00;
}

.fp-news__badge--news {
    background: rgba(255, 255, 255, 0.1);
    color: #D1D5DC;
}

/* Card content (title + arrow) */
.fp-news__card-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fp-news__card-title {
    font-size: 16px;
    color: #fff;
    transition: color 0.3s ease;
}

.fp-news__card:hover .fp-news__card-title {
    color: #CCFF00;
}

/* Arrow icon inside card */
.fp-news__card .fp-arrow {
    color: #D1D5DC;
    flex-shrink: 0;
    margin-left: 16px;
    transition: all 0.3s ease;
}

.fp-news__card:hover .fp-arrow {
    color: #CCFF00;
    transform: translateX(4px);
}

/* More link */
.fp-news__more {
    margin-top: 24px;
    text-align: center;
}

.fp-news__more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #CCFF00;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fp-news__more a:hover {
    text-decoration: underline;
}

.fp-news__more a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    position: relative;
    top: -1px;
}

/* ========================================
   Responsive
   ======================================== */

@media only screen and (max-width: 640px) {
    .fp-news__card-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .fp-news__date {
        font-size: 16px;
    }

    .fp-news__card-title {
        font-size: 16px;
    }
}
