.articles-hero {
    background: #121212;
    padding: 6rem 0 4rem 0;
}

.articles-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.7rem;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0;
    margin-bottom: 3.5rem;
}

.articles-main-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 80vh;
    padding: 0 15px;
}

.articles-section {
    flex: 1;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 2rem;
    border-top: none;
    background: rgba(18, 18, 18, 0.5);
    border-radius: 8px;
    padding: 0 0 2.5rem 0;
    transition: transform 0.2s ease;
    gap: 0;
    position: relative;
    border-bottom: 1px solid #333;
}

.article-item:hover {
    transform: translateY(-5px);
}

.article-date-block {
    width: 110px;
    min-width: 110px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: 8px 0 0 8px;
    margin: 0;
    position: relative;
    box-shadow: none;
    padding: 0;
}

.article-date-block::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #fff;
    border-radius: 8px 8px 0 0;
}

.article-date-day {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.7rem;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 0.2rem 0;
    letter-spacing: 0.05em;
}

.article-date-month {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
    font-weight: 600;
}

.article-content-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 2.5rem;
    position: relative;
    align-items: flex-end;
}

.article-content-wrap::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    border-radius: 0 8px 0 0;
}

.article-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin: 1.2rem 0 1rem 0;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-title:hover {
    color: var(--primary);
}

.article-date-meta {
    display: flex;
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 0.7rem;
    margin-top: 0.2rem;
    letter-spacing: 0.2em;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.article-date-meta span {
    margin-right: 1.2rem;
}

.article-excerpt {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.read-more {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0.45rem 1.3rem;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s;
    border-radius: 4px;
    float: right;
    margin-top: 1.2rem;
    margin-bottom: 0;
}

.read-more:hover {
    background: #9200c5;
}

@media (max-width: 1100px) {
    .articles-main-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .article-item {
        flex-direction: column;
        gap: 0;
        padding: 0 0 2rem 0;
    }
    .article-date-block {
        width: 100%;
        min-width: 0;
        height: 70px;
        border-radius: 8px 8px 0 0;
        flex-direction: row;
        margin-bottom: 0;
    }
    .article-date-block::before {
        border-radius: 8px 8px 0 0;
    }
    .article-content-wrap {
        padding: 1.5rem 0 0 0;
        align-items: flex-end;
    }
    .article-content-wrap::before {
        border-radius: 0 8px 0 0;
    }
    .article-title {
        font-size: 1.5rem;
        margin: 1rem 0 0.7rem 0;
    }
    .read-more {
        font-size: 1rem;
        padding: 0.45rem 1.3rem;
        float: none;
        align-self: flex-end;
        margin-top: 1rem;
    }
} 