/* =========================================================
   SCROLLING SLIDESHOW
   ========================================================= */

.scrolling-slideshow-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 10px;
}

.scrolling-slideshow-wrapper img {
    max-width: 100%;
    height: auto;
    scroll-snap-align: start;
    flex: 0 0 auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.scrolling-slideshow-wrapper img:hover {
    transform: scale(1.05);
}

/* Slideshow scrollbar styling */
.scrolling-slideshow-wrapper::-webkit-scrollbar {
    height: 8px;
}

.scrolling-slideshow-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}


/* =========================================================
   HIDE COMMENTS ON HOME PAGE
   ========================================================= */

.home .comments-area,
.home #comments,
.home .comment-respond,
.home .comments-title,
.home .comments-count-wrapper,
.home .comment-list,
.home .ast-comment-formwrap,
.home #ast-commentform,
.home form.comment-form,
.home textarea#comment,
.home input[name="author"],
.home input[name="email"],
.home input[name="url"],
.home [id*="comment"],
.home [class*="comment"],
.home [class*="comments"],
.home h2 + .comments-area,
.home h3 + .comments-area,
.home h2:empty,
.home h3:empty {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   DIRECT ADMISSIONS TRACKER — TABLET
   Page ID: 1225
   ========================================================= */

@media (max-width: 1024px) {

    .page-id-1225 .entry-title,
    .page-id-1225 .wp-block-post-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

}


/* =========================================================
   DIRECT ADMISSIONS TRACKER — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    /* Page title */
    .page-id-1225 .entry-title,
    .page-id-1225 .wp-block-post-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    /* Intro / disclaimer text */
    .page-id-1225 .entry-content p {
        font-size: 16px !important;
        line-height: 1.55 !important;
        margin-bottom: 14px !important;
    }

    /* Tighten spacing around the table block */
    .page-id-1225 .wp-block-group.alignfull {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    /* wpDataTables text */
    .page-id-1225 .wpDataTable,
    .page-id-1225 .wpDataTable td,
    .page-id-1225 .wpDataTable th {
        font-size: 15px !important;
        line-height: 1.35 !important;
    }

    /* Hide visible horizontal scrollbar but keep swipe scrolling */
    .page-id-1225 .wdtscroll {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .page-id-1225 .wdtscroll::-webkit-scrollbar {
        display: none;
    }

}