.hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #01050E;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(255,77,77,0.1) 0%, rgba(13,13,18,0) 70%);
    z-index: -1;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    order: 1;
}

.hero-meta {
    margin-bottom: 10px;
}

.article-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 10px 0px;
}

.cta-button {
    background-color: rgba(255, 77, 77, 0.1);
    color: var(--accent-color);
    padding: 6px 12px;
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.hero-image {
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
    order: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .hero {
        padding: 0;
        margin-bottom: 10px;
    }

    .hero .container {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-image {
        order: -1;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .hero-content {
        max-width: 100%;
        text-align: left;
        order: 2;
        padding: 0 15px;
    }

    .hero-meta {
        text-align: left;
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 28px;
        margin: 10px 0;
        text-align: left;
    }

    .hero p {
        margin: 10px 0;
        text-align: left;
    }

    .hero-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin: 10px;
    }

    .cta-button {
        align-self: stretch;
        text-align: center;
        padding: 8px 24px;
        margin-top: 15px;
    }
}