/* ==========================================================================
   Subpage Title
   ========================================================================== */
.subpage__title {
    width: 100%;
    padding: clamp(8rem, 15.333vw, 11.5rem) clamp(2rem, 10vw, 7.5rem) clamp(2rem, 5.333vw, 4rem);
    text-align: center;
}

.subpage__title .t__wrapper {
    max-width: 55rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.subpage__title .ja__txt {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 3.75vw, 2.8125rem);
    line-height: 1.6;
    color: #333851;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.subpage__title .ja__txt span {
    color: #468f03;
}

/* ==========================================================================
   Facility Info Section
   ========================================================================== */
.facility-info {
    position: relative;
    width: 100%;
    padding: clamp(2rem, 8vw, 6rem) clamp(1.25rem, 13.333vw, 10rem) clamp(2rem, 4vw, 3rem);
}

.facility-info__cloud-left {
    position: absolute;
    top: clamp(-4rem, -6vw, -5rem);
    left: clamp(-15rem, -22vw, -18rem);
    width: clamp(16rem, 28vw, 22rem);
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.facility-info__cloud-right {
    position: absolute;
    top: clamp(2rem, 5vw, 4rem);
    right: clamp(-15rem, -22vw, -18rem);
    width: clamp(16rem, 28vw, 22rem);
    height: auto;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================================================
   Donation CTA
   ========================================================================== */
.donation-cta {
    position: relative;
    width: 100%;
    margin-top: 6rem;
    border-radius: 1.875rem;
    overflow: hidden;
    padding: 3rem clamp(2rem, 10vw, 7.5rem);
}

.donation-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.donation-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donation-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 3rem);
}

.donation-cta__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1.667vw, 1.25rem);
    line-height: 1.6;
    color: #ffffff;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.donation-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.donation-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: clamp(16rem, 26vw, 19.5rem);
    height: clamp(3.5rem, 5.833vw, 4.375rem);
    border-radius: 0.625rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.167vw, 1.625rem);
    line-height: 1.4;
    text-decoration: none;
    transition: filter 0.2s ease;
}

.donation-cta__btn:hover {
    filter: brightness(0.95);
}

.donation-cta__btn--email {
    background-color: #fdd11c;
    color: #468f02;
}

.donation-cta__btn--email img {
    width: clamp(1.5rem, 2.667vw, 2.5rem);
    height: auto;
}

.donation-cta__btn--phone {
    background-color: #ffffff;
    color: #575757;
}

.donation-cta__btn--phone img {
    width: clamp(1.25rem, 2.333vw, 1.75rem);
    height: auto;
}

/* ==========================================================================
   News (お知らせ)
   ========================================================================== */
.news {
    width: 100%;
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4.667vw, 3.5rem);
}

.news__heading {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.4;
    color: #333851;
    text-align: center;
    letter-spacing: 0.1em;
}

.news__heading--green {
    color: #468f03;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2.5rem, 6vw, 4.5rem) clamp(0.75rem, 1.667vw, 1.25rem);
    width: 100%;
}

.news__card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.news__card:hover {
    opacity: 0.8;
}

.news__card-img {
    width: 100%;
    aspect-ratio: 280 / 200;
    border-radius: 1.5625rem;
    overflow: hidden;
}

.news__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

.news__card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news__card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.625rem;
    height: 1.5rem;
    border-radius: 0.6875rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
}

.news__card-tag--green {
    background-color: #468f03;
    color: #ffcd16;
}

.news__card-tag--yellow {
    background-color: #ffcd16;
    color: #468f03;
}

.news__card-date {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    color: #333851;
}

.news__card-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    color: #468f03;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    margin-top: 7rem;
    margin-bottom: 3rem;
}

.pagination__arrow {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.pagination__arrow img {
    width: 100%;
    height: 100%;
}

.pagination__numbers {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.pagination__num {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #333851;
    text-decoration: none;
}

.pagination__num--active {
    color: #468f03;
}

.pagination__num:hover {
    color: #468f03;
}

.pagination__dots {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #333851;
}

.facility-info__mountain {
    position: absolute;
    top: 29%;
    right: calc((100% - 100vw) / 2);
    width: clamp(12rem, 20vw, 16rem);
    height: auto;
    z-index: 0;
    pointer-events: none;
}


.facility-info__mountain-left {
    position: absolute;
    bottom: 0;
    left: calc((100% - 100vw) / 2);
    width: clamp(12rem, 20vw, 16rem);
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.facility-info__mountain-right {
    position: absolute;
    bottom: clamp(5rem, 10vw, 8rem);
    right: calc((100% - 100vw) / 2);
    width: clamp(12rem, 20vw, 16rem);
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.facility-info__mountain-left-small {
    position: absolute;
    bottom: clamp(2rem, 4vw, 3rem);
    left: calc((100% - 100vw) / 2 + clamp(10rem, 18vw, 14rem));
    width: clamp(6rem, 10vw, 8rem);
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.facility-info__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4.667vw, 3.5rem);
    max-width: 55rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Heading
   ========================================================================== */
.facility-info__heading {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.4;
    color: #333851;
    text-align: center;
    letter-spacing: 0.1em;
}

.facility-info__heading--green {
    color: #468f03;
}

/* Info Table
   ========================================================================== */
.facility-info__table {
    width: 100%;
}

.facility-info__row {
    display: flex;
    align-items: center;
    padding: 1rem 0 1rem 1.5rem;
    border-bottom: 1px solid #c0c0c0;
}

.facility-info__row:first-child {
    border-top: 1px solid #c0c0c0;
}

.facility-info__row--staff {
    align-items: center;
}

.facility-info__label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1.667vw, 1.25rem);
    line-height: 1.4;
    color: #333851;
    letter-spacing: 0.1em;
    width: 10rem;
    flex-shrink: 0;
}

.facility-info__value {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(0.875rem, 1.333vw, 1rem);
    line-height: 1.4;
    color: #333851;
    letter-spacing: 0.1em;
}

/* Staff Table
   ========================================================================== */
.staff-table {
    display: flex;
    border: 2px solid #439805;
    border-top: 2px solid #ffffff;
}

.staff-table__col {
    width: clamp(6.5rem, 13.833vw, 10.375rem);
    text-align: center;
}



.staff-table__header {
    position: relative;
    overflow: hidden;
    height: 3.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(0.875rem, 1.333vw, 1rem);
    line-height: 1.4;
    letter-spacing: 0.1em;
}

.staff-table__header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/bg-green.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.staff-table__header span {
    position: relative;
    z-index: 1;
}

.staff-table__col + .staff-table__col .staff-table__header {
    border-left: 2px solid #ffffff;
}

.staff-table__col + .staff-table__col .staff-table__count {
    border-left: 2px solid #439805;
}

.staff-table__count {
    background-color: #ffffff;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333851;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(0.875rem, 1.333vw, 1rem);
    line-height: 1.4;
    letter-spacing: 0.1em;
}


/* Facility Map (Satellite)
   ========================================================================== */
.facility-info__map {
    position: relative;
    width: 100%;
}

.facility-info__map-label {
    position: absolute;
    top: clamp(-1.5rem, -2vw, -1.75rem);
    left: clamp(0.5rem, 1.5vw, 1rem);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(8rem, 16.667vw, 12.5rem);
    height: clamp(2.5rem, 4.167vw, 3.125rem);
}

.facility-info__map-label img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.facility-info__map-label span {
    position: relative;
    z-index: 1;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #fdd11c;
    letter-spacing: 0.1em;
}

.facility-info__map-iframe {
    position: relative;
    width: 85.45%;
    margin: 0 auto;
    padding-bottom: 28.41%;
    overflow: hidden;
}

.facility-info__map-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Divider
   ========================================================================== */
.facility-info__divider {
    border: none;
    border-top: 1px solid #333851;
    width: 100%;
    margin: clamp(1rem, 2vw, 1.5rem) 0;
}

/* Facility Guide
   ========================================================================== */
.facility-guide {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3.5rem);
}

.facility-guide__heading {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1.667vw, 1.25rem);
    line-height: 1.4;
    color: #333851;
    text-align: center;
    letter-spacing: 0.1em;
}

.facility-guide__content {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.facility-guide__floorplan {
    flex-shrink: 0;
    width: clamp(14rem, 30.833vw, 23.125rem);
    margin-top: -2.75rem;
}

.facility-guide__floorplan img {
    width: 100%;
    height: auto;
    display: block;
}

.facility-guide__details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}

.facility-guide__icons {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.375rem clamp(2rem, 4vw, 3rem);
    width: fit-content;
}

.facility-guide__icon-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.facility-guide__icon-item img {
    width: clamp(1.5rem, 2.5vw, 1.875rem);
    height: clamp(1.5rem, 2.5vw, 1.875rem);
}

.facility-guide__icon-item span {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(0.875rem, 1.333vw, 1rem);
    color: #333851;
}

.facility-guide__area {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(0.875rem, 1.333vw, 1rem);
    line-height: 1.4;
    color: #333851;
}

.facility-guide__desc {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(0.875rem, 1.333vw, 1rem);
    line-height: 1.4;
    color: #333851;
}

/* ==========================================================================
   Staff Message
   ========================================================================== */
.staff-message {
    position: relative;
    width: 100%;
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4.667vw, 3.5rem);
}

.staff-message__heading {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.4;
    color: #333851;
    text-align: center;
    letter-spacing: 0.1em;
}

.staff-message__heading--green {
    color: #468f03;
}


.staff-message__content {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 4.667vw, 3.5rem);
    width: 100%;
}

.staff-message__photo {
    flex-shrink: 0;
    width: clamp(14rem, 29.75vw, 22.3125rem);
    border-radius: 1.5625rem;
    overflow: hidden;
}

.staff-message__photo img {
    width: 100%;
    height: auto;
    display: block;
}

.staff-message__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.staff-message__text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: clamp(0.875rem, 1.333vw, 1rem);
    line-height: 1.4;
    color: #333851;
}

/* ==========================================================================
   Donation
   ========================================================================== */
.donation {
    width: 100%;
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4.667vw, 3.5rem);
}

.donation__heading {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.4;
    color: #333851;
    text-align: center;
    letter-spacing: 0.1em;
}

.donation__heading--green {
    color: #468f03;
}

.donation__content {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 4.667vw, 3.5rem);
    width: 100%;
}

.donation__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.donation__text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: clamp(0.875rem, 1.333vw, 1rem);
    line-height: 1.4;
    color: #333851;
}

.donation__photos {
    position: relative;
    flex-shrink: 0;
    width: clamp(16rem, 33.333vw, 25rem);
    height: clamp(12rem, 19.417vw, 14.5625rem);
}

.donation__photo {
    position: absolute;
    border-radius: 1.5625rem;
    object-fit: cover;
    transform: scaleX(-1);
}

.donation__photo--large {
    top: 0;
    right: 0;
    width: 61.75%;
    height: 86.26%;
}

.donation__photo--small {
    bottom: 0;
    left: 0;
    width: 43.5%;
    height: 62.61%;
}

.donation__balloon {
    position: absolute;
    bottom: clamp(-2rem, -3vw, -2.5rem);
    right: clamp(-1rem, -2vw, -1.5rem);
    width: clamp(4rem, 6.667vw, 5rem);
    height: auto;
    pointer-events: none;
    z-index: 2;
}

/* ==========================================================================
   Donation More (寄付 続き)
   ========================================================================== */
.donation-more {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.donation-more__owl {
    position: absolute;
    top: clamp(-4rem, -6vw, -5rem);
    left: 40%;
    transform: translateX(-50%);
    width: clamp(5rem, 12.167vw, 9.125rem);
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.donation-more__content {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 4.667vw, 3.5rem);
    width: 100%;
}

.donation-more__photos {
    position: relative;
    flex-shrink: 0;
    width: clamp(16rem, 33.333vw, 25rem);
    height: clamp(10rem, 18.667vw, 14rem);
}

.donation-more__photo {
    position: absolute;
    border-radius: 1.5625rem;
    object-fit: cover;
    transform: scaleX(-1);
}

.donation-more__photo--large {
    top: 0;
    left: 0;
    width: 61.75%;
    height: 89.73%;
}

.donation-more__photo--small {
    top: 33%;
    right: 0;
    width: 49.5%;
    height: 67%;
}

.donation-more__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.donation-more__text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: clamp(0.875rem, 1.333vw, 1rem);
    line-height: 1.4;
    color: #333851;
}

.donation-more__squirrel {
    position: absolute;
    bottom: clamp(-2rem, -3vw, -2.5rem);
    left: clamp(-2rem, -4vw, -3rem);
    width: clamp(5rem, 10.417vw, 7.8125rem);
    height: auto;
    pointer-events: none;
}

.donation-more__trees {
    position: absolute;
    bottom: clamp(-2rem, -3vw, -2.5rem);
    right: clamp(-10rem, -16vw, -14rem);
    width: clamp(5rem, 10.417vw, 7.8125rem);
    height: auto;
    pointer-events: none;
}


/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    width: 100%;
    padding: clamp(2rem, 3.2vw, 3rem) clamp(2rem, 5.333vw, 5rem);
}

.cta__inner {
    position: relative;
    max-width: 65rem;
    margin: 0 auto;
    border-radius: 1.875rem;
    overflow: hidden;
    padding: clamp(1.5rem, 2.667vw, 2rem);
}

.cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta__bg img {
    width: 400%;
    height: 100%;
    object-fit: cover;
    margin-left: -100%;
}

.cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 2.667vw, 2.5rem);
}

.cta__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta__heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.667vw, 2.5rem);
    line-height: 1.4;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.25rem;
}

.cta__subtext {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 1.333vw, 1.25rem);
    line-height: 1.4;
    color: #ffffff;
    text-align: center;
}

.cta__subtext strong {
    font-weight: 700;
}

.cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 1.333vw, 1.25rem);
    width: 100%;
}

.cta__btn {
    flex: 1 1 auto;
    min-width: clamp(8rem, 15vw, 12rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: clamp(3rem, 4.667vw, 4.375rem);
    border-radius: 1.25rem;
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1.733vw, 1.625rem);
    line-height: 1.7;
    text-decoration: none;
}

.cta__btn--phone,
.cta__btn--mobile {
    background-color: #ffffff;
    color: #575757;
}

.cta__btn--phone img {
    width: clamp(1rem, 1.867vw, 1.75rem);
    height: clamp(1rem, 1.867vw, 1.75rem);
}

.cta__btn--mobile img {
    width: clamp(0.75rem, 1.4vw, 1.3rem);
    height: auto;
}

.cta__btn--email {
    background-color: #ffcd16;
    color: #468f02;
}

.cta__btn--email img {
    width: clamp(1.25rem, 2.667vw, 2.5rem);
    height: clamp(0.875rem, 1.867vw, 1.75rem);
}

.cta__btn--line {
    background-color: #ffffff;
    color: #575757;
    letter-spacing: 0.15em;
}

/* ==========================================================================
   Responsive – Tablet (max-width: 1023px)
   ========================================================================== */
@media (max-width: 1023px) {
    .subpage__title {
        padding-top: clamp(6rem, 10vw, 8rem);
    }

    .facility-info__cloud-left {
        width: clamp(10rem, 18vw, 16rem);
        left: clamp(-4rem, -5vw, -4.5rem);
    }

    .facility-info__cloud-right {
        width: clamp(10rem, 18vw, 16rem);
        right: clamp(-4rem, -5vw, -4.5rem);
    }

    .facility-info__mountain {
        width: clamp(8rem, 16vw, 14rem);
    }

    .facility-info__mountain-left {
        width: clamp(10rem, 18vw, 14rem);
    }

    .facility-info__mountain-left-small {
        width: clamp(5rem, 8vw, 7rem);
        left: calc((100% - 100vw) / 2 + clamp(8rem, 14vw, 12rem));
    }

    .facility-info__mountain-right {
        width: clamp(10rem, 18vw, 14rem);
        bottom: clamp(4rem, 8vw, 6rem);
    }

    .donation-more__squirrel,
    .donation-more__trees {
        width: clamp(3.5rem, 8vw, 6rem);
    }

    .staff-message__mountain {
        display: none;
    }
}

/* ==========================================================================
   Responsive – Mobile (max-width: 797px)
   ========================================================================== */
@media (max-width: 797px) {
    /* Title */
    .subpage__title {
        padding-top: 5rem;
        padding-bottom: 1.5rem;
    }

    .subpage__title .ja__txt {
        white-space: normal;
    }

    /* Section padding */
    .facility-info {
        padding: 2rem 1.25rem;
    }

    /* Decorations – hide or shrink */
    .facility-info__cloud-left,
    .facility-info__cloud-right {
        display: none;
    }

    .facility-info__mountain {
        width: 8rem;
        top: auto;
        bottom: 0;
        right: -2rem;
    }

    .facility-info__mountain-left {
        width: 8rem;
        left: -2rem;
    }

    .facility-info__mountain-left-small {
        width: 4rem;
        left: 5rem;
        bottom: 1.5rem;
    }

    .facility-info__mountain-right {
        width: 8rem;
        right: -2rem;
        bottom: 3rem;
    }

    .donation-more__owl {
        width: 4rem;
        top: -3rem;
    }

    .donation-more__squirrel,
    .donation-more__trees {
        width: 3.5rem;
        bottom: -1.5rem;
    }

    .donation-more__squirrel {
        left: 0;
    }

    .donation-more__trees {
        right: 0;
    }

    .donation__balloon {
        width: 3rem;
    }

    /* Info Table */
    .facility-info__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding-left: 0.75rem;
    }

    .facility-info__label {
        width: 100%;
    }

    .facility-info__row--staff .facility-info__value {
        width: 100%;
    }

    .staff-table {
        width: 100%;
    }

    .staff-table__col {
        flex: 1;
        width: auto;
    }

    /* Map */
    .facility-info__map-iframe {
        width: 100%;
        padding-bottom: 56.25%;
    }

    .facility-info__map-label {
        width: 6rem;
        height: 2rem;
    }

    /* Facility Guide */
    .facility-guide__content {
        flex-direction: column;
        align-items: center;
    }

    .facility-guide__floorplan {
        width: 100%;
        max-width: 24rem;
        margin-top: 0;
    }

    .facility-guide__icons {
        grid-template-columns: auto auto;
    }

    /* Staff Message */
    .staff-message {
        margin-top: 3rem;
    }

    .staff-message__content {
        flex-direction: column;
        align-items: center;
    }

    .staff-message__photo {
        width: 80%;
        max-width: 20rem;
    }

    /* Donation */
    .donation {
        margin-top: 3rem;
    }

    .donation__content {
        flex-direction: column;
        align-items: center;
    }

    .donation__photos {
        width: 80%;
        max-width: 20rem;
        height: auto;
        aspect-ratio: 400 / 233;
    }

    /* Donation More */
    .donation-more__content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .donation-more__photos {
        width: 80%;
        max-width: 20rem;
        height: auto;
        aspect-ratio: 400 / 224;
    }

    /* Donation CTA */
    .donation-cta {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
        margin-left: calc(-1 * clamp(1.25rem, 3vw, 2rem));
        margin-right: calc(-1 * clamp(1.25rem, 3vw, 2rem));
        width: auto;
    }

    .donation-cta__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .donation-cta__text {
        flex-shrink: 1;
    }

    .donation-cta__buttons {
        width: 100%;
    }

    .donation-cta__btn {
        width: 100%;
    }

    /* News */
    .news {
        margin-top: 3rem;
    }

    .news__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0.75rem;
    }

    .news__card-tag {
        width: 4.5rem;
        font-size: 0.8125rem;
    }

    .news__card-date {
        font-size: 0.8125rem;
    }

    /* Pagination */
    .pagination {
        gap: 2rem;
        margin-top: 3rem;
    }

    .pagination__numbers {
        gap: 1.25rem;
    }

    .pagination__arrow {
        width: 2rem;
        height: 2rem;
    }

    /* CTA */
    .cta__buttons {
        flex-direction: column;
    }

    .cta__btn {
        width: 100%;
        max-width: 24rem;
        margin: 0 auto;
        padding: 1rem 2rem;
    }
}

/* ==========================================================================
   Responsive – Small Mobile (max-width: 500px)
   ========================================================================== */
@media (max-width: 500px) {
    .news__grid {
        grid-template-columns: 1fr;
    }

    .pagination__numbers {
        gap: 0.75rem;
    }

    .pagination {
        gap: 1rem;
    }

    .donation__photos,
    .donation-more__photos {
        width: 100%;
    }

    .facility-info__mountain,
    .facility-info__mountain-right {
        width: 6rem;
    }

    .facility-info__mountain-left {
        width: 6rem;
        left: -1rem;
    }

    .facility-info__mountain-left-small {
        width: 3rem;
        left: 4rem;
        bottom: 1rem;
    }

    .facility-info__mountain-right {
        bottom: 2rem;
        right: -1rem;
    }
}
