/* Homepage — รายการหนังสือ/เอกสารเผยแพร่ (ไม่ใช้ carousel) */
.home-books-section {
    background: linear-gradient(180deg, #eef5f7 0%, #f5fafb 40%, #ffffff 100%);
}

.home-books-section .home-books-head {
    margin-bottom: 1.75rem;
}

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

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

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

.home-books-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1199.98px) {
    .home-books-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .home-books-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.home-books-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(22, 35, 64, 0.08);
    box-shadow: 0 6px 24px rgba(22, 35, 64, 0.07);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    height: 100%;
}

.home-books-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(22, 35, 64, 0.12);
}

.home-books-card__cover {
    display: block;
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(160deg, #e2e8f0 0%, #f1f5f9 100%);
}

.home-books-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.home-books-card:hover .home-books-card__cover img {
    transform: scale(1.04);
}

.home-books-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1rem 1.1rem;
    position: relative;
}

.home-books-card__badge {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: flex-start;
    max-width: 100%;
    padding: 0.28rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #3c2fc0, #5b4fcf);
    border-radius: 6px;
    margin-bottom: 0.65rem;
    line-height: 1.3;
    overflow: hidden;
}

.home-books-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    color: #1a2234;
    text-decoration: none;
    margin: 0 0 auto 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.1em;
}

.home-books-card__title:hover {
    color: #3c2fc0;
}

.home-books-card__cta {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(22, 35, 64, 0.08);
}

.home-books-card__cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.45rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: #3c2fc0;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.home-books-card__cta a:hover {
    background: #2f2599;
    color: #fff;
}

.home-books-card__cta a i {
    font-size: 0.75rem;
}
