/* =========================================================
   Accommodation Page Only
========================================================= */

/* ---------- Image ---------- */
.acc-image-wrap {
    text-align: center;
    margin: 24px 0;
}

.acc-image {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ---------- Card Base ---------- */
.acc-card {
    background: #f7f9fb;
    border-radius: 6px;
}

/* Size variations */
.acc-card-lg {
    padding: 18px;
    margin-bottom: 20px;
}

.acc-card-md {
    padding: 16px;
}

.acc-card-sm {
    padding: 16px;
    margin-bottom: 20px;
}

/* ---------- Typography ---------- */
.acc-hotel-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #132440;
    margin-bottom: 6px;
}

.acc-station-title {
    font-weight: 700;
    color: #132440;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.acc-venue-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #132440;
    margin-bottom: 6px;
}

/* ---------- Lists ---------- */
.acc-list {
    margin-top: 12px;
}

/* ---------- Map ---------- */
.acc-map {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 30px;
}

.acc-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 6px;
}

/* ---------- Image alignment ---------- */
.acc-image-center {
    text-align: center;
    margin-bottom: 12px;
}

/* =====================================
   Hotel Row with Thumbnail
===================================== */

/* =====================================
   Hotel Row – Unified Card Layout
===================================== */

.acc-hotel-row {
    display: flex;
    align-items: stretch;
    gap: 28px;
    margin-bottom: 28px;

    /* unified card look */
    background: #f7f9fb;
    border-radius: 8px;
    padding: 20px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.acc-hotel-row:hover {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
}


.acc-hotel-text {
    flex: 1;
    background: transparent;
    /* important */
    padding: 0;
    /* important */
    box-shadow: none;
    /* important */
}



.acc-hotel-thumb {
    flex: 0 0 350px;
    display: flex;
    align-items: center;
}

.acc-hotel-thumb img {
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


@media (max-width: 768px) {
    .acc-hotel-row {
        flex-direction: column;
        padding: 18px;
    }

    .acc-hotel-thumb {
        margin-top: 14px;
    }

    .acc-hotel-thumb img {
        width: 100%;
        max-width: 100%;
    }
}

.acc-bus-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acc-bus-route {
    font-weight: 700;
    color: #132440;
    letter-spacing: 0.02em;
}

.acc-bus-image img {
    max-width: 100%;
    border-radius: 6px;
    opacity: 0.95;
}

/* =====================================
   Tourism Section Refinement
===================================== */

.acc-tourism-card {
    position: relative;
}

.acc-tourism-lead::before {
    content: "📍";
    display: inline-block;
    margin-right: 6px;
    opacity: 0.8;
}

.acc-tourism-link {
    margin-top: 14px;
}

/* Tourism closing tone */
.content-section:last-of-type .acc-card {
    background: linear-gradient(180deg,
            #f7f9fb 0%,
            #eef3f7 100%);
}

/* =====================================
   Tourism Image Size Control
===================================== */

.acc-tourism-image {
    margin-top: 16px;
    text-align: center;
}

.acc-tourism-image img {
    width: 100%;
    max-width: 720px;
    /* ← key change */
    border-radius: 6px;
    opacity: 0.95;
}