        .debrief-page-title {
            text-align: center;
            margin-top: 1rem;
            margin-bottom: 1rem;

            @media(max-width: 525px) {
                margin: 1rem;
                font-size: 1rem;
            }
        }
        
        .latest-edition {
            display: grid;
            grid-template-columns: 1fr 1fr;

            @media(max-width: 525px) {
                grid-template-columns: 1fr;
            }
        }

        .latest-edition__image {
            position: relative;
            min-height: 300px;
        }

        .latest-edition__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        img.latest-edition__icon {
            position: absolute;
            bottom: 0;
            right: 12px;
            width: 64px;
            height: auto;
            opacity: 0.8;
        }

        .latest-edition__content {
            background-color: #b0c4d8;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 48px 56px;
            gap: 20px;
        }

        .latest-edition__content h2 {
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .latest-edition__content p {
            font-size: 1rem;
            color: #fff;
            line-height: 1.6;
        }

        .btn {
            width: fit-content;
            // max-width: 10rem;
            color: white;
        }

        .btn:hover {
            background-color: #a93226;
        }

        .cards-section {
            padding: 60px 40px;
            background-color: #f0f0f0;

            @media(max-width: 525px) {
                padding: 60px 16px;
            }
        }

        .cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;

            @media(max-width: 525px) {
                grid-template-columns: 1fr;
            }
        }

        .card {
            background-color: #fff;
            padding: 36px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
            border: none;
        }

        .card__body {
            display: flex;
            gap: 20px;

            @media(max-width: 525px) {
                flex-direction: column;
            }
        }

        .card__body img {
            width: 120px;
            height: 160px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .card__text {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .card__text h3 {
            font-size: 1.1rem;
            font-weight: 800;
            text-transform: uppercase;
            color: #111;
        }

        .card__text p {
            font-size: 0.9rem;
            color: #333;
            line-height: 1.6;
        }

        .articles-section {
            background-color: #fff;
            padding: 0 0 60px;
        }

        .articles-banner {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            padding: 40px 20px 30px;
            background-color: #fff;

            img {
                width: 100%;
                max-width: 900px;
                height: fit-content;
                object-fit: cover; 
            }
        }

        .articles-banner img {
            object-fit: cover;
        }

        .articles-controls {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px 32px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: end;

            @media(max-width: 525px) {
                gap: 10px;
                grid-template-columns: 0.5fr 1fr;
            }
        }

        .articles-controls label {
            display: block;
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #111;
            margin-bottom: 10px;
        }

        .articles-controls select {
            width: 100%;
            padding: 10px 14px;
            font-size: 0.95rem;
            border: 1px solid #ccc;
            background-color: #fff;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            cursor: pointer;
        }

        .search-wrapper {
            display: flex;
        }

        .search-wrapper input {
            flex: 1;
            padding: 10px 14px;
            font-size: 0.95rem;
            border: 1px solid #ccc;
            border-right: none;
            outline: none;
        }

        .search-wrapper button {
            background-color: #d4a017;
            border: none;
            padding: 0 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .search-wrapper button svg {
            fill: #fff;
            width: 18px;
            height: 18px;
        }

        .articles-list {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .articles-list h2 {
            font-size: 1.1rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #111;
            margin-bottom: 20px;
        }

        .article-item {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-top: 1px solid #ddd;
        }

        .article-item:last-child {
            border-bottom: 1px solid #ddd;
        }

        .article-item img {
            width: 100px;
            height: 80px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .article-item.no-image {
            padding-left: 0;
        }

        .article-content h3 {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #1a3a6b;
            margin-bottom: 4px;
            letter-spacing: 0.3px;
        }

        .article-content .article-date {
            font-size: 0.75rem;
            color: #888;
            margin-bottom: 8px;
        }

        .article-content p {
            font-size: 0.82rem;
            color: #333;
            line-height: 1.5;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-content a.read-more {
            font-size: 0.8rem;
            color: #1a3a6b;
            text-decoration: none;
        }

        .article-content a.read-more:hover {
            text-decoration: underline;
        }

        .no-results {
            display: none;
            padding: 30px 0;
            font-size: 0.95rem;
            color: #666;
        }
