﻿.article-section h1 {
    font-size: 96px;
    text-align: left;
    margin-bottom: 40px;
    font-weight: 900;
    padding: 32px 5%;
}

/* grid สินค้า */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 48px;
    padding: 0 60px;
}

/* link ครอบทั้ง card */
.store-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* hover ทั้ง card */
.store-link:hover img {
    transform: translateY(-6px);
}

.store-link:hover p {
    text-decoration: underline;
}

/* card */
.store-item {
    text-align: center;
}

.store-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.store-item p {
    margin-top: 12px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
}

/* see all */
.store-seeall {
    margin-top: 50px;
    text-align: center;
}

.seeall-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: #000;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.3s ease;
    min-width: 180px;
}

.seeall-btn:hover {
    background: #333;
}

/* ===== NEW RELEASE GRID (แทน owl) ===== */

.release-grid {
    display: grid;
    margin-left: 0 !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    padding: 0 5%;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 32px;
    padding: 0 5%;
}

/* Tablet */
@media (max-width: 1200px) {
    .release-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* Small Tablet */
@media (max-width: 992px) {
    .release-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    .release-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Small Mobile */
@media (max-width: 500px) {
    .release-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.action-btn {
    width: 34px;
    height: 34px;
    background: #F6F6F6;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}



.article-section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* === GRID LAYOUT === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 60px;padding: 0 60px;
}

/* === CARD STYLE === */
.article-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
}

.article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* overlay */
.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    padding: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.2),
        transparent
    );
}

/* hover effect */
.article-card:hover img {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 991px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-overlay {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}