.read-main {
    padding-top: 110px;
    padding-bottom: 4rem;
}

.read-hero {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 2rem;
}

.read-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid rgba(231, 111, 81, 0.3);
    background: rgba(231, 111, 81, 0.1);
    margin-bottom: 1rem;
}

.read-title {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #f8fafc;
    line-height: 1.15;
}

.read-subtitle {
    margin: 1rem auto 0;
    max-width: 700px;
    color: #a7b6cb;
    font-size: 1rem;
}

.article-index {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.index-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(148, 163, 184, 0.1);
    color: #dbe7f7;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.index-chip:hover {
    border-color: rgba(231, 111, 81, 0.4);
    background: rgba(231, 111, 81, 0.14);
    color: #ffffff;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.article-entry.glass-card {
    padding: 1.4rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(15, 23, 42, 0.58);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.article-entry:focus-visible {
    outline: 2px solid rgba(231, 111, 81, 0.6);
    outline-offset: 2px;
}

.article-entry:hover {
    transform: translateY(-3px);
    border-color: rgba(231, 111, 81, 0.45);
    background: rgba(231, 111, 81, 0.08);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.article-domain {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #8cc9ff;
}

.article-time {
    font-size: 0.77rem;
    color: #92a5bd;
}

.article-entry h2 {
    margin: 0 0 0.7rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    text-align: left;
    color: #f8fafc;
}

.article-snippet {
    color: #b8cadf;
    margin: 0;
}

.article-open-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    color: #97acc5;
    font-weight: 600;
}

.article-open-hint i {
    font-size: 0.68rem;
    transition: transform 0.2s ease;
}

.article-entry:hover .article-open-hint i {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .read-main {
        padding-top: 95px;
    }

    .article-list {
        grid-template-columns: 1fr;
    }

    .article-entry.glass-card {
        padding: 1.1rem;
    }

    .article-entry h2 {
        font-size: 1.3rem;
    }
}
