/* Homepage — แนวทางคลินิก & สรุปสัมมนา */
.home-articles-section {
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 45%, #f8f9fc 100%);
}

.home-articles-section .home-articles-head {
    margin-bottom: 1.25rem;
}

.home-articles-section .home-articles-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5c6bc0;
    margin-bottom: 0.35rem;
}

.home-articles-section .home-articles-kicker::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #3c2fc0, #7c6ae8);
}

.home-articles-section .home-articles-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.35;
    color: #162340;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.02em;
}

.home-articles-section .home-articles-sub {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.home-articles-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-articles-card {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid rgba(22, 35, 64, 0.08);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(22, 35, 64, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-articles-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(60, 47, 192, 0.12);
    border-color: rgba(60, 47, 192, 0.2);
    color: inherit;
}

.home-articles-card__thumb {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, #e8eaf6 0%, #f3e8ff 50%, #e0f2fe 100%);
    position: relative;
}

.home-articles-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-articles-card__thumb.is-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(60, 47, 192, 0.12), rgba(124, 106, 232, 0.08));
    pointer-events: none;
}

.home-articles-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.15rem 0;
}

.home-articles-card__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    color: #1a2234;
    margin: 0 0 0.4rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-articles-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #3c2fc0;
    margin-top: auto;
}

.home-articles-card:hover .home-articles-card__cta {
    color: #2a2299;
}

.home-articles-card__cta i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.home-articles-card:hover .home-articles-card__cta i {
    transform: translateX(3px);
}

.home-articles-more {
    margin-top: 1.25rem;
}

.home-articles-more .btn-home-articles {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.15rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3c2fc0;
    background: rgba(60, 47, 192, 0.08);
    border: 1px solid rgba(60, 47, 192, 0.18);
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-articles-more .btn-home-articles:hover {
    background: #3c2fc0;
    color: #fff;
    border-color: #3c2fc0;
}

@media (max-width: 575.98px) {
    .home-articles-card {
        padding: 0.75rem 0.85rem;
        gap: 0.75rem;
    }

    .home-articles-card__thumb {
        width: 72px;
        height: 72px;
    }

    .home-articles-section .home-articles-title {
        font-size: 1.2rem;
    }
}
