.news-hero {
    min-height: 430px;
    padding: 150px 7% 90px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.news-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(250, 204, 21, 0.06);
    border-radius: 50%;
    filter: blur(80px);
    top: -180px;
    right: -120px;
    pointer-events: none;
}

.news-hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.news-hero h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.05;
    margin: 25px 0;
    font-weight: 800;
    letter-spacing: -2px;
}

.news-hero h1 span {
    color: #facc15;
}

.news-hero p {
    max-width: 650px;
    color: #a1a1aa;
    font-size: 18px;
    line-height: 1.8;
}

.news-page {
    padding: 50px 7% 110px;
}

.news-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-section-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 45px;
}

.news-section-title h2 {
    font-size: clamp(30px, 4vw, 48px);
    margin: 15px 0 0;
    letter-spacing: -1px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #facc15;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.news-back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 19px;
    border: 1px solid #27272a;
    border-radius: 12px;
    color: #e4e4e7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.news-back-button:hover {
    border-color: #facc15;
    color: #facc15;
    transform: translateY(-2px);
}

.news-grid-full {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.news-card-full {
    width: 100%;
    min-width: 0;
    background: #111113;
    border: 1px solid #242427;
    border-radius: 22px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card-full:hover {
    transform: translateY(-7px);
    border-color: rgba(250, 204, 21, 0.5);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3);
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #18181b;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-card-full:hover .news-card-image img {
    transform: scale(1.06);
}

.news-card-date {
    position: absolute;
    left: 15px;
    bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    color: #f4f4f5;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.news-card-date i {
    color: #facc15;
}

.news-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
    color: #71717a;
    font-size: 12px;
    font-weight: 600;
}

.news-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-card-meta i {
    color: #facc15;
}

.news-card-body h3 {
    margin: 0 0 13px;
    color: #fafafa;
    font-size: 21px;
    line-height: 1.3;
}

.news-card-body p {
    margin: 0 0 23px;
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
}

.read-news {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    border: none;
    background: transparent;
    color: #facc15;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.read-news i {
    transition: transform 0.25s ease;
}

.read-news:hover {
    color: #fde047;
}

.read-news:hover i {
    transform: translateX(5px);
}

.news-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.news-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.news-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.news-modal-content {
    position: relative;
    width: min(900px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: #0c0c0c;
    border: 1px solid rgba(250, 204, 21, 0.25);
    border-radius: 24px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7);
    transform: translateY(25px) scale(0.97);
    transition: transform 0.3s ease;
    z-index: 2;
}

.news-modal.active .news-modal-content {
    transform: translateY(0) scale(1);
}

.news-modal-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #18181b;
}

.news-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-modal-body {
    padding: 35px;
}

.news-modal-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 18px;
    color: #aaa;
    font-size: 14px;
}

.news-modal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.news-modal-meta i {
    color: #facc15;
}

.news-modal-body h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.news-modal-body p {
    margin: 0;
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.8;
    white-space: pre-line;
}

.news-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.news-modal-close:hover {
    background: #facc15;
    color: #080808;
    border-color: #facc15;
    transform: rotate(90deg);
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 1000px) {
    .news-grid-full {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (max-width: 700px) {
    .news-hero {
        min-height: 360px;
        padding: 130px 6% 70px;
    }

    .news-hero h1 {
        font-size: clamp(40px, 12vw, 60px);
        letter-spacing: -1.5px;
    }

    .news-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .news-page {
        padding: 40px 6% 80px;
    }

    .news-section-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .news-grid-full {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card-image {
        height: 220px;
    }

    .news-modal {
        padding: 12px;
    }

    .news-modal-content {
        max-height: 94vh;
        border-radius: 18px;
    }

    .news-modal-image {
        height: 240px;
    }

    .news-modal-body {
        padding: 25px 20px;
    }

    .news-modal-body h2 {
        font-size: 28px;
    }

    .news-modal-body p {
        font-size: 15px;
        line-height: 1.7;
    }

    .news-modal-meta {
        gap: 12px;
        font-size: 13px;
    }

    .news-modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 450px) {
    .news-hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .news-page {
        padding-left: 5%;
        padding-right: 5%;
    }

    .news-card-body {
        padding: 21px;
    }

    .news-card-body h3 {
        font-size: 20px;
    }

    .news-modal {
        padding: 8px;
    }

    .news-modal-content {
        border-radius: 16px;
    }

    .news-modal-image {
        height: 210px;
    }

    .news-modal-body {
        padding: 22px 17px 25px;
    }
}