.page-container {
    padding-top: 110px;
    min-height: 80vh;
    background: transparent;
}

.page-title,
.landing-title,
.article-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    margin-bottom: 2.2rem;
    text-align: center;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.list-section {
    padding: 3.5rem 0 4.5rem;
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-bottom: 3.5rem;
}

.list-card {
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(2, 6, 23, 0.08);
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(2, 6, 23, 0.08);
}

.list-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 138, 0, 0.3);
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.12);
}

.list-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.8s;
}

.list-card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.6rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body .date {
    font-size: 0.86rem;
    color: rgba(255, 138, 0, 0.98);
    font-weight: 900;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.card-body h2 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    line-height: 1.35;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.card-body h2 a:hover {
    color: rgba(255, 138, 0, 0.98);
}

.card-body p {
    color: rgba(100, 116, 139, 0.98);
    font-size: 1rem;
    line-height: 1.7;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.2rem;
    flex-wrap: wrap;
}

.page-btn {
    padding: 12px 18px;
    background: rgba(2, 6, 23, 0.04);
    color: var(--text-main);
    border: 1px solid rgba(2, 6, 23, 0.1);
    font-weight: 900;
    transition: var(--transition);
    border-radius: 999px;
}

.page-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #111827;
    border-color: rgba(255, 138, 0, 0.35);
}

.article-detail,
.show-landing {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3.5rem 0 2rem;
}

.article-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.article-meta {
    color: rgba(100, 116, 139, 0.96);
    font-weight: 800;
    font-size: 0.95rem;
}

.article-content,
.landing-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.4rem 2rem;
    line-height: 1.9;
    color: rgba(15, 23, 42, 0.88);
    font-size: 1.06rem;
    border: 1px solid rgba(2, 6, 23, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(2, 6, 23, 0.08);
}

.article-content p,
.landing-content p {
    margin-bottom: 1.4rem;
}

.article-content h2,
.article-content h3 {
    margin: 2.2rem 0 1rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.article-content img {
    margin: 1.8rem 0;
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(2, 6, 23, 0.08);
    box-shadow: 0 22px 60px rgba(2, 6, 23, 0.14);
}

@media (max-width: 1100px) {
    .list-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .article-content,
    .landing-content {
        padding: 1.8rem 1.2rem;
        font-size: 1.04rem;
    }

    .page-title,
    .landing-title,
    .article-title {
        font-size: clamp(1.9rem, 8vw, 2.4rem);
        margin-bottom: 1.6rem;
    }

    .list-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .card-body {
        padding: 1.3rem;
    }

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

    .page-btn {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .list-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.2rem !important;
    }

    .list-header img {
        width: 100% !important;
        max-width: 440px;
    }

    .list-header h1 {
        text-align: center !important;
    }

    .article-meta {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
    }
}
