.category-name {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #c3c3c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-align: center;
}

.category-description {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0 auto;
    padding: 0 20px;
}

.article-item {
    background: #FFFFFF19;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.article-item:hover {
    transform: translateY(-5px);
}

.article-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 75%;
}

.tags {
    display: flex;
    gap: 10px;
    align-items: center;

}

.tags a {
    background: #4351cc;
    color: white;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.article-meta {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

.article-title {
    text-decoration: none;
}

.article-title h3 {
    font-size: 24px;
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-title p {
    color: #c0c0c0;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 0;
}

time {
    color: #a0a0a0;
    font-size: 14px;
    white-space: none;
}

@media (max-width: 768px) {
    .category-name {
        font-size: 32px;
    }

    .category-description {
        font-size: 16px;
        margin: 0 20px 40px 20px;
    }

    .articles-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .feature-icon {
        height: 200px;
    }

    .articles-grid h3 {
        font-size: 20px;
    }

    .article-meta {
        display: block;
    }
}
