body {
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 0;
            background: linear-gradient(120deg, #222 80%, #e63946 100%);
            color: #fff;
        }

        .section {
            background: #181818;
            border-radius: 18px;
            box-shadow: 0 4px 24px #0004;
            padding: 48px 32px;
            margin: 48px auto;
            max-width: 1100px;
        }

         .section h2 {
            color: #e63946;
            text-align: center;
            font-size: 2em;
            margin-bottom: 32px;
            letter-spacing: 1px;
        }

        .news {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
        }

        .news-description {
            color: #ccc;
            font-size: 1em;
            line-height: 1.7em;
            text-align: justify;
            background-color: #ffffff10;
            border-radius: 10px;
            padding: 1rem;
            max-height: 8em;
            overflow-y: auto;
            margin-bottom: 12px;
            scrollbar-width: none;
            font-weight: 400;
        }

        .card {
            background: #222;
            border-radius: 14px;
            box-shadow: 0 2px 12px #0002;
            padding: 28px 22px;
            flex: 1 1 320px;
            min-width: 260px;
            max-width: 350px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
        }

        .card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 8px 32px #e6394622;
        }

        .card h5 {
            color: #e63946;
            font-size: 1.3em;
            margin-bottom: 12px;
            text-align: center;
            letter-spacing: 1px;
        }

        .card div {
            color: #e63946;
            font-size: 0.95em;
            margin-bottom: 6px;
            text-align: left;
        }

        .card-text {
            color: #aaa;
            font-size: 0.95em;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .card-text i {
            color: #e63946;
        }

        .back-link {
            display: inline-block;
            margin-top: 32px;
            color: #e63946;
            font-weight: bold;
            text-decoration: none;
            font-size: 1.1em;
            transition: color 0.2s;
        }

        .back-link:hover {
            color: #fff;
        }


        @media (max-width: 900px) {
            .news {
                flex-direction: column;
                gap: 24px;
                align-items: center;
            }
            .card {
                max-width: 100%;
            }
        }
