﻿.patch-notes-section {
    padding: 0 0 90px;
    margin-top: 170px;
    background: radial-gradient(circle at top, rgba(214, 168, 47, 0.12), transparent 35%), #080808;
    min-height: 100vh;
    color: #fff;
}

.patch-header {
    text-align: center;
    margin-bottom: 55px;
}

    .patch-header h1 {
        font-family: "Orbitron", sans-serif;
        font-size: 46px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 12px;
    }

    .patch-header p {
        color: #aaa;
        font-size: 17px;
    }

.patch-list {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
}

.patch-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    min-height: 245px;
    background: rgba(14, 14, 14, 0.96);
    border: 1px solid rgba(214, 168, 47, 0.22);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    transition: 0.25s ease;
}

    .patch-card:hover {
        transform: translateY(-5px);
        border-color: rgba(214, 168, 47, 0.75);
        box-shadow: 0 0 35px rgba(214, 168, 47, 0.18);
    }

.patch-image {
    background: #111;
    overflow: hidden;
}

    .patch-image img {
        width: 100%;
        height: 100%;
        min-height: 245px;
        object-fit: cover;
        display: block;
        transition: 0.35s ease;
    }

.patch-card:hover .patch-image img {
    transform: scale(1.05);
}

.patch-content {
    padding: 30px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.patch-badge {
    width: fit-content;
    background: #d6a82f;
    color: #111;
    padding: 7px 14px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.patch-content h2 {
    font-family: "Orbitron", sans-serif;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 12px;
}

.patch-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #8f8f8f;
    font-size: 14px;
    margin-bottom: 15px;
}

.patch-content p {
    color: #d7d7d7;
    line-height: 1.65;
    margin: 0;
}

.patch-read-more {
    width: fit-content;
    margin-top: 18px;
    color: #d6a82f;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .patch-card {
        grid-template-columns: 1fr;
    }

    .patch-image img {
        height: 240px;
    }

    .patch-content {
        padding: 26px;
    }
}

@media (max-width: 768px) {
    .patch-notes-section {
        margin-top: 140px;
        padding-bottom: 70px;
    }

    .patch-header h1 {
        font-size: 34px;
    }

    .patch-content h2 {
        font-size: 24px;
    }
}


.news-detail-content {
    line-height: 1.8;
}

    .news-detail-content p {
        margin: 0 0 20px;
    }

    .news-detail-content br {
        display: block;
        margin-bottom: 8px;
        content: "";
    }