/* ==========================================
   ARTICLES CONTENT STYLING
   ========================================== */

#content-container .articles-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.articles-content__title {
    font-size: 2.2rem !important;
    margin: 0 0 1.5rem 0 !important;
    color: #2c3e50;
    text-align: center;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.articles-content__list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.articles-content__card {
    background: white;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e1e8ed;
    width: 100%;
}

.articles-content__card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.articles-content__date {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.articles-content__article-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.articles-content__article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.articles-content__article-title a:hover {
    color: #3498db;
}

.articles-content__author {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.articles-content__author strong {
    color: #495057;
}

.articles-content__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.articles-content__tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.2rem 0.6rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #bbdefb;
    transition: all 0.2s ease;
}

.articles-content__tag:hover {
    background: #bbdefb;
    transform: scale(1.05);
}

.articles-content__tag--go {
    background: #e8f5e8;
    color: #2e7d32;
    border-color: #c8e6c8;
}

.articles-content__tag--docker {
    background: #e3f2fd;
    color: #1565c0;
    border-color: #90caf9;
}

.articles-content__tag--https {
    background: #fff3e0;
    color: #ef6c00;
    border-color: #ffcc02;
}

.articles-content__tag--javascript {
    background: #fff8e1;
    color: #f57f17;
    border-color: #ffecb3;
}

.articles-content__tag--python {
    background: #e8f5e8;
    color: #388e3c;
    border-color: #a5d6a7;
}

.articles-content__tag--react {
    background: #e3f2fd;
    color: #0277bd;
    border-color: #81d4fa;
}

.articles-content__no-articles {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: 3rem;
}