@charset "UTF-8";

/* ===== Mascot moments ===== */
.mascot-block {
    text-align: center;
    margin: 1.5rem auto 2.5rem;
}

.mascot-block img {
    width: 130px;
    height: auto;
    display: block;
    margin: 0 auto 0.6rem;
}

.mascot-block .mascot-caption {
    font-size: 0.95rem !important;
    color: #888 !important;
    font-style: italic;
    margin: 0 !important;
}

/* ===== Recommend grid ===== */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: left;
    margin-top: 1.5rem;
}

.recommend-card {
    background: #f8f8f6;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.15) 0px 6px 18px;
}

.recommend-card img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    display: block;
}

.recommend-card .content {
    padding: 0.8rem 1rem 1.1rem;
}

.recommend-card .content h4 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    color: #158a74;
    font-weight: 800;
}

.recommend-card .content p {
    font-size: 0.9rem !important;
    margin: 0 !important;
    color: #555;
    line-height: 1.5;
}

/* ===== Testimonials carousel ===== */
.testimonial-carousel-wrap {
    position: relative;
    margin-top: 1.5rem;
}

.testimonial-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 2.8rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    flex: 0 0 88%;
    max-width: 540px;
    scroll-snap-align: center;
    background: #f9f8f5;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    cursor: zoom-in;
}

.testimonial-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 12px;
    margin: 0 auto;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    border: none;
    background: #158a74;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-arrow:hover {
    background: #0f6e5c;
}

@media screen and (max-width: 538.98px) {
    .testimonial-carousel {
        padding: 0.5rem 2.4rem 1rem;
    }

    .testimonial-slide {
        flex-basis: 92%;
    }
}

/* ===== Calendar teaser section ===== */
.calendar-section {
    text-align: center;
}

@media screen and (max-width: 538.98px) {
    .recommend-grid {
        grid-template-columns: 1fr;
    }

    .recommend-card img {
        height: 15rem;
    }

    .mascot-block img {
        width: 100px;
    }
}
