﻿.hero {
    background: linear-gradient(135deg, #ff864f, #ff5438);
    color: #fff;
    border-radius: 20px;
    padding: 34px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: 0 30px 60px rgba(255, 94, 48, 0.3);
}

    .hero h1 {
        margin: 0 0 12px;
        font-size: 32px;
    }

    .hero p {
        margin: 0;
        font-size: 16px;
        opacity: 0.9;
    }

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .hero-stats div {
        background: rgba(255, 255, 255, 0.18);
        border-radius: 14px;
        padding: 14px 22px;
        min-width: 140px;
        text-align: center;
    }

    .hero-stats span {
        display: block;
        font-size: 13px;
        opacity: 0.8;
    }

    .hero-stats strong {
        font-size: 28px;
    }

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 36px 0 18px;
}

    .section-title h2 {
        margin: 0;
        font-size: 24px;
    }

    .section-title a {
        color: #ff5b30;
        font-size: 14px;
    }

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.article-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(22, 38, 70, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .article-card small {
        color: #9aa2b5;
    }

    .article-card h3 {
        margin: 0;
        font-size: 18px;
    }

    .article-card p {
        margin: 0;
        color: #5a6275;
        line-height: 1.6;
    }

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

    .tags span {
        background: #f6f7fb;
        border-radius: 999px;
        padding: 4px 12px;
        font-size: 12px;
        color: #ff703d;
    }

.highlight-list {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(15, 29, 70, 0.08);
}

.highlight-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f8;
}

    .highlight-item:last-child {
        border-bottom: none;
    }

    .highlight-item span {
        color: #9aa3b6;
        font-size: 13px;
    }

.subscription {
    margin-top: 36px;
    background: #1f2c40;
    color: #fff;
    border-radius: 18px;
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

    .subscription button {
        border: none;
        border-radius: 999px;
        padding: 12px 28px;
        background: #ff7435;
        color: #fff;
        font-size: 15px;
        cursor: pointer;
    }

footer {
    text-align: center;
    color: #9aa4b6;
    padding: 40px 0 60px;
    font-size: 13px;
}

@media (max-width: 768px) {
    header {
        padding: 16px 5vw;
    }

    main {
        padding: 32px 5vw 90px;
    }
}
