img {
    -webkit-user-drag: none;
}

.container, 
.container-fluid, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl, 
.container-xxl {
    padding: 0px;
}

.row {
    margin-left: 0%;
    margin-right: 0%;
}

.row > * {
    padding-left: 0%;
    padding-right: 0%;
}

@font-face {
    font-family: 'aduscript';
    src: url('../fonts/AdventuresUnlimited-ScriptRg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

.mb-info {
    display: none;
}

h1, h2, h4, h4, h5, h6 {
    font-family: 'Mulish';
}

@media (min-width: 1400px) {
    .noahs_page_builder-row-container {
        max-width: 1480px;
    }
}

/*========================================================================================================================================*/

/* 可擴展的白色內容區域 */
.ch-expandable-content {
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    width: 100%;
}

.ch-expandable-content.is-open {
    max-height: 500px; /* 一個足夠大的值來顯示所有內容 */
}

/* 通用容器，用於置中和 padding */
.ch-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.ch-expandable-content .ch-container {
    padding-top: 32px;
    padding-bottom: 32px;
}

.ch-expandable-content__title {
    text-align: center;
    color: #003366;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 24px;
}

.ch-expandable-content__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 32px;
    text-align: center;
    font-size: 14px;
    color: #4a5568;
}

/* 在中等螢幕尺寸以上變為四欄 */
@media (min-width: 768px) {
    .ch-expandable-content__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.ch-expandable-content__grid a:hover {
    color: #2563eb;
}

.ch-arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease-in-out;
    display: block;
}

.ch-arrow-icon.is-rotated {
    transform: rotate(180deg);
}

.ch-staff-dropdown {
    position: relative;
}

.ch-staff-dropdown__trigger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: Mulish;
    font-weight: 600;
    font-size: 14px;
}

.ch-staff-dropdown__arrow {
    width: 0.8rem;
    height: 0.8rem;
    margin-left: 0.25rem;
}

.ch-staff-dropdown__menu {
    display: none; /* 預設隱藏 */
    position: absolute;
    top: 75%;
    left: 20px;
    background-color: #003366; /* 與導覽列同色 */
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    min-width: 100px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 60;
    border: 1px solid rgba(107, 114, 128, 0.7); /* 輕微的邊框 */
}

.ch-staff-dropdown__menu.is-visible {
    display: block; /* 顯示選單 */
}

.ch-staff-dropdown__menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.875rem;
    white-space: nowrap;
}

.ch-staff-dropdown__menu li a:hover {
    background-color: #004488; /* 滑鼠懸停時的顏色 */
}

/*========================================================================================================================================*/

/* --- General Styles --- */
body {
    margin: 0;
    font-family: "Mulish", "Helvetica Neue", Helvetica, sans-serif, "aduscript";
}

a {
    text-decoration: none;
    color: inherit;
}

.logo-container {
    cursor: pointer;
}

/* --- Header Container --- */
.header-container {
    width: 100%;
    background-color: #003366;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* --- Top Bar (Dark Blue) --- */
.top-bar {
    background-color: #003366;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    font-size: 14px;
    width: 100%;
    max-width: 1440px;
   /*max-width: 1920px;*/
}

.top-bar-container {
    display: flex;
    justify-content: center;
    max-height: 38px;
}

.main-header-container {
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar .top-bar-field {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.top-bar svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.header-dividing {
    height: 42px;
    border-left: 1px solid #ffffff;
}

.user-title {
}

.more-func {
    cursor: pointer;
}

.search-icon svg {
    width: 22px;
    height: 22px;
}

/* --- Main Header (White) --- */
.main-header {
    background-color: white;
    display: flex;
    align-items: center;
    padding: 20px 20px;
    width: 100%;
    max-width: 1440px;
    flex-wrap: wrap;
    justify-content: left;
    /*max-width: 1920px;*/
}

/* --- Logo Area --- */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-svg {
    width: 207px;
    height: auto;
}

footer .logo-svg {
    width: 32px;
    height: auto;
}

.divider {
    border: 1px solid #003366;
    height: 50px;
    margin: 0 15px;
}

.logo-text .university-name {
    font-size: 14px;
    font-weight: 700;
    color: #003366;
    line-height: 18.5px;
    width: max-content;
    margin-left: 5px;
}

.logo-text .office-name {
    font-size: 16px;
    color: #003366;
    width: max-content;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
}

/* --- Main Navigation --- */
.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.main-nav > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    position: relative;

}

.main-nav a {
    font-size: 15px;
    font-weight: 700;
    color: #003366;
    padding: 13px 15px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
    line-height: 20px;
}

/* --- Help Button --- */
.help-button {
    background-color: #FFF0E5;
    color: #D9534F;
    border-radius: 50px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 15px;
    transition: background-color 0.3s;
}

.help-button:hover {
    background-color: #fce3d1;
}

.help-button:hover span {
    color: #CB4810;
}

.help-button svg {
    width: 24px;
    height: 24px;
}

/* --- Dropdown Menu Styles --- */
.has-dropdown:hover > a {
    color: #CB4810; /* Orange color on hover */
    border-color: transparent; /* Hide bottom border when dropdown is active */
}

.dropdown-container {
    display: none;
    position: absolute;
    top: 150%; /* Position below the nav item */
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 35px 40px 50px 40px;
    min-width: 250px;
    z-index: 1000;
    list-style: none;
    text-align: left;
}

/* Upward-pointing triangle */
.dropdown-container::before {
    content: '';
    position: absolute;
    bottom: 100%; /* At the top of the dropdown */
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent transparent;
}

.has-dropdown:hover .dropdown-container {
    display: flex;
    gap: 50px;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
    position: relative;
    background-color: white;
    z-index: 1000;
    list-style: none;
    text-align: left;
    border-style: solid;
    border-color: transparent transparent transparent transparent;
    padding: 0;
    max-width: 240px;
    width: max-content;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu > li:not(:last-child) {
    margin-bottom: 18px;
}

.dropdown-menu a {
    color: #003366;
    padding: 2px 0;
    display: block;
    font-weight: bold;
    transition: color 0.3s;

    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

.dropdown-menu a:hover {
    color: #CB4810;
}

.dropdown-menu a:hover img {
    filter: invert(37%) sepia(98%) saturate(1451%) hue-rotate(357deg) brightness(83%) contrast(92%);
}

/* Sub-menu styles */
.dropdown-submenu {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

.dropdown-submenu li:not(:last-child) {
    margin-bottom: 10px;
}

.dropdown-submenu a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #707070;
}

.dropdown-submenu a svg {
    width: 1em;
    height: 1em;
    transition: transform 0.2s;
}

.dropdown-submenu a:hover svg {
    transform: translateX(3px);
}

/*========================================================================================================================================*/
/* --- Footer Styles --- */
.site-footer {
    background-color: #003366;
    color: white;
    padding: 20px;
    z-index: 999;
    position: relative;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
}

/* --- Left Section --- */
.footer-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-logo svg {
    width: 140px;
    height: auto;
    flex-shrink: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 14px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin: 8px 0 0 0;
    font-size: 12px;
    color: #a9b7c6; /* Lighter than pure white */
}

/* --- Middle Section --- */
.footer-middle {
    flex-shrink: 0;
}

.caring-logo {
    filter: brightness(0) saturate() invert() sepia(17%) saturate(7489%) hue-rotate(201deg) brightness(116%) contrast(112%);
}

.footer-middle {
    margin-left: auto;
}

/* --- Right Section --- */
.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    display: block;
    line-height: 0;
}

.social-icons svg {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s;
}

.social-icons a:hover svg {
    opacity: 0.8;
}

.footer-logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.2rem;
    filter: brightness(0) saturate() invert() sepia(17%) saturate(7489%) hue-rotate(201deg) brightness(116%) contrast(112%);
}

/*========================================================================================================================================*/
.page {
    padding: 10px 20px;
}

.banner-flex {
    display: flex;
    gap: 20px;
    max-width: 1440px;
    margin: auto;
}

.bannerSwiper {
    max-width: 1080px;
    max-height: 648px;
    aspect-ratio: 1080 / 648;
    border-radius: 30px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    /*max-height: 500px;*/
}

.block_swiper_short_type .swiper-slide img {
    aspect-ratio: 1 / 1;
}

.swiper-slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: white;
    padding: 30px 30px 15px 20px;
    border-top-right-radius: 30px;
    z-index: 10;
    max-width: 580px;
    width: 60%;
}

.swiper-slide-text-title {
    font-weight: 800;
    font-size: 42px;
    line-height: 46px;
    letter-spacing: 0%;
    color: #003366;
    margin-bottom: 20px;
}

.swiper-slide-text-body {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #666666;
}

.swiper-slide-text::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 100%; 
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at top right, transparent 0, transparent 30px, white 30.5px);
}

.swiper-slide-text::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at top right, transparent 0, transparent 30px, white 30.5px);
}

.swiper-slide-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #002D62;
    margin: 0 0 15px 0;
    line-height: 1.2;
    max-width: 450px;
}

.swiper-slide-text p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    max-width: 450px;
}

/* 公告卡片主容器 */
.announcements-card {
    background-color: #CB4810; /* 主要的橘紅色背景 */
    color: white;
    border-radius: 30px; /* 圓角 */
    padding: 30px;
    max-width: 340px; /* 最大寬度 */
    width: 92.5%;
    box-sizing: border-box;
    position: relative;
}

.announcements-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0; 
    width: 100%;
    height: 34%;
    background: linear-gradient(180deg, rgba(203, 72, 16, 0) 0%, #CB4810 40%);
    border-radius: 30px;

}

/* 單個公告項目 */
.announcement-item {
    margin-bottom: 24px;
    cursor: pointer;
}

/* 日期樣式 */
.announcement-item .date {
    font-weight: 600;
    font-size: 13px;
    line-height: 13px;
    letter-spacing: 0%;
    color: #FFFFFF;
}

/* 標題樣式 */
.announcement-item .title {
    font-weight: 800;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #FFFFFF;
}

/* 分隔線樣式 */
.announcements-card hr {
    border: none;
    height: 2px;
    background-color: rgba(255, 255, 255, 1); /* 半透明白線 */
    margin: 30px 0;
}

/* "所有公告" 按鈕 */
.all-announcements-btn {
    display: flex;
    justify-content: space-between; /* 讓文字和箭頭分開 */
    align-items: center;
    background-color: white;
    color: #333;
    border-radius: 50px; /* 膠囊形狀 */
    padding: 12px 15px 12px 25px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;

    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;

}

.all-announcements-btn:hover {
    /*transform: translateY(-2px);*/
    /*box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);*/
}

/* 箭頭圖標 */
.arrow-icon {
    width: 22px;
    height: 22px;
    background-color: #0d3d6f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding-bottom: 2px; 
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.announcement-list {
    max-height: 324px;
    overflow-y: auto;
}
.announcement-list::-webkit-scrollbar {
    width: 0px;
}
.announcement-list::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}
.announcement-list::-webkit-scrollbar-track {
    background: transparent;
}
/* 響應式設計：針對手機等小螢幕設備 */
@media (max-width: 480px) {
    .announcements-card {
        padding: 24px;
    }

    .all-announcements-btn {
        font-size: 14px;
        padding: 10px 12px 10px 20px;
    }
}

/* 2. 控制項的容器 (包含按鈕和分頁) */
.swiper-controls {
    /* 固定在 swiper-container 的右下角 */
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 3. 上一頁/下一頁按鈕樣式 */
.home-banner-swiper .swiper-button-prev,
.home-banner-swiper .swiper-button-next {
    position: static;
    width: 40px;
    height: 40px;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.home-banner-swiper .swiper-button-prev:hover,
.home-banner-swiper .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* 調整 Swiper 預設的箭頭圖示 */
.home-banner-swiper .swiper-button-prev::after,
.home-banner-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

.home-banner-swiper .swiper-button-prev::after,
.home-banner-swiper .swiper-button-next::after {
  content: '';
}

.home-banner-swiper .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='19' y1='12' x2='5' y2='12'%3e%3c/line%3e%3cpolyline points='12 5 5 12 12 19'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45%;
}

.home-banner-swiper .swiper-button-next {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='5' y1='12' x2='19' y2='12'%3e%3c/line%3e%3cpolyline points='12 5 19 12 12 19'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45%;
}

.home-banner-swiper .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.custom-pagination {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-left: 15px;
}

/* 5. 分頁進度線條 */
.pagination-line {
    width: 50px; /* 線條總長度 */
    height: 2px;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 0 10px;
    position: relative;
    border-radius: 2px;
}

.pagination-line-inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #ffffff;
    /* 初始寬度為 0，將由 JS 控制 */
    width: 0%; 
    border-radius: 2px;
    /* 加上過渡效果，讓寬度變化更平滑 */
    transition: width 0.4s ease;
}

/*========================================================================================================================================*/

:root {
    --bg-color: #FFF7F2;
    --primary-orange: #D95F2B;
    --dark-maroon: #4a1c1e;
    --text-dark: #333;
    --text-light: #fff;
    --border-color: #eee;
}

.view-all-btn {
    background-color: var(--primary-orange);
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.view-all-btn:hover {
    background-color: #b84f24;
}

.view-all-btn span {
    font-size: 1.5rem;
    line-height: 1;
}

.events-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
}

/* Featured Event (Left Column) */
.featured-event {
    display: flex;
    flex-direction: column;
}

.event-card {
    background-color: var(--dark-maroon);
    border-radius: 15px;
    padding: 1.5rem;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 350px;
    /* SVG pattern for background */
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C5542' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.card-image-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: url('https://images.unsplash.com/photo-1579222851185-5e58397181b8?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=600') no-repeat center center;
    background-size: cover;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.card-header-text h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    border-left: 3px solid var(--primary-orange);
    padding-left: 1rem;
}

.card-header-text h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0.5rem 0 0 0;
    padding-left: calc(1rem + 3px);
}

.card-header-text .chinese {
    font-weight: 400;
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1rem;
}

.conductor-info p, .event-time-location p {
    margin: 0;
    font-size: 0.9rem;
}

.conductor-info p:first-child {
    font-weight: 700;
    text-transform: uppercase;
}

.performers {
    display: flex;
    gap: 0.5rem;
}

.performer {
    text-align: center;
    font-size: 0.7rem;
}

.performer-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 auto 0.25rem;
    background-size: cover;
    background-position: center;
}

.featured-event-info {
    margin-top: 1.5rem;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.whatson_tag {
    padding: 6px 12px;
    border-radius: 30px;
    background-color: #ffffff;
    color: #CB4810;
    font-weight: 800;
    font-size: 12px;
    line-height: 110%;
    letter-spacing: 0%;
    text-transform: uppercase;
}


.featured-event-info h4 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.featured-event-info > p {
    margin: 0 0 1.5rem 0;
    color: #666;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #DDCFC6;
}

.dot.active {
    background-color: var(--primary-orange);
}

/* Other Events (Right Column) */
.other-events {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    cursor: pointer;
}

.event-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-item-img {
    max-width: 150px;
    height: auto;
    border-radius: 15px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.event-item-info .tags {
    margin-bottom: 15px;
}

.event-item-info-content {
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1%;
    margin: 0;
    color: #003366;
}

/*========================================================================================================================================*/
.mini_banner {
    max-width: 340px;
    margin-top: 20px;
    width: 92.5%;
}

.mini_bannerSwiper {
    margin-top: 12px;
    max-width: 340px;
    border-radius: 30px;
}

.mini_banner_flex {
    display: flex;
    justify-content: space-between;
}

.mini_banner_flex_title {
    width: max-content;
    font-weight: 800;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #003366;
}

/* 自定義分頁點容器 */
.swiper-pagination-custom-home-mini {
    position: relative;
    display: flex;
    height: fit-content;
    align-items: center;
    width: fit-content !important;
    bottom: 0 !important;
    top: unset !important;
}

/* 分頁點樣式 */
.swiper-pagination-custom-home-mini .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #CB4810;
    opacity: 1;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    opacity: 0.4;
}

/* 選中時的分頁點樣式 */
.swiper-pagination-custom-home-mini .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border: #CB4810 3px solid;
    opacity: 1;
}

.mini_bannerSwiper img {
    aspect-ratio: 300 / 168;
    cursor: pointer;
}

/* ========== 向下滾動後出現的精簡Header (Sticky Header) ========== */
#sticky-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom-right-radius: 40px;
    padding: 10px 0;
    display: none;
    max-width: 1440px;
    justify-self: anchor-center;
    margin: 0 auto;
}

#sticky-header::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at bottom right, transparent 30px, transparent 30px, white 30.5px);
}

.sticky-header-content {
    padding: 20px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom-left-radius: 45px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #ffffff;
}

.sticky-header-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -28px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at bottom left, transparent 30px, transparent 30px, white 30.5px);
}

.sticky-header-content::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at bottom left, transparent 30px, transparent 30px, white 30.5px);
}

.help-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px 20px;
    border: 0px solid #e0e0e0;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    color: #CB4810;
    background-color: #FEEFE8;
    cursor: pointer;
    line-height: 100%;
}

.help-button-icon {
    width: 20px;
    height: 20px;
    fill: #e87722;
}

.hamburger-button {
    width: 50px;
    height: 50px;
    background-color: #003366; /* 深藍色 */
    border-radius: 50%;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.hamburger-button .bar {
    width: 18px;
    height: 2px;
    background-color: white;
    border-radius: 1px;
}

/* ========== Go To Top 按鈕 ========== */

#go-to-top-bar {
    /*position: sticky;*/
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 99;
    background-color: #ffffff;
    padding: 10px 0;
    display: none;
    max-width: 1440px;
    justify-self: anchor-center;
    margin-top: 20px;
}

#go-to-top-bar::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at top right, transparent 30px, transparent 30px, white 30.5px);
}

.go-to-top-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0px;
    right: -1px;
    background-color: #ffffff;
    border-top-left-radius: 45px;
    padding: 20px;
}

.go-to-top-content::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: -30px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at top left, transparent 30px, transparent 0, white 30.5px);
}

.go-to-top-content::after {
    content: '';
    position: absolute;
    top: -30px;
    right: 0;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at top left, transparent 30px, transparent 0, white 30.5px);
}

#go-to-top-button {
    width: 50px;
    height: 50px;
    background-color: #CB4810; /* 橘色 */
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
}

/*========================================================================================================================================*/

.whatson_main_events {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
}

.whatson_main {
    display: flex;
    flex-direction: column;
    background: #FEEFE8;
    border-radius: 30px;
    max-width: 1440px;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 80px;
    padding-right: 80px;
    gap: 50px;
}

.whatson_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatson_header_title {
    font-weight: 800;
    font-size: 42px;
    line-height: 46px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #CB4810;
}

.whatson_content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #CB4810;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 9999px;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease-in-out;

    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;

}

.cta-button:hover {
    background-color: #B04E25;
    color: #FFFFFF;
    /*transform: translateY(-2px);*/
    /*box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);*/
}

/* --- 右側的白色圓圈 --- */
.arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-left: 16px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.cta-button:hover .arrow-circle {
    /*transform: translateX(4px);*/
}

.cta-button .basic-arrow-icon {
    stroke: #CB4810; 
    fill: #CB4810;
}

.whatson_header_button .basic-arrow-icon {
    stroke: #CB4810;
    fill: #CB4810;
    width: 10px;
    height: 10px;
    stroke-width: 0.5px;
}

.whatson_header_button a:hover {
    color: #fff ;
}

.white_button a:hover {
    color: #003366 ;
}

.white_button .basic-button:hover {
    opacity: 0.85;
}

.whatson_banner_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatson_bannerSwiper {
    max-width: 500px;
    border-radius: 30px;
}

/* 自定義分頁點容器 */
.swiper-pagination-custom-home-whatson {
    position: relative;
    display: flex;
    height: fit-content;
    align-items: center;
    width: fit-content !important;
    bottom: 0 !important;
    top: unset !important;
}

/* 分頁點樣式 */
.swiper-pagination-custom-home-whatson .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #CB4810;
    opacity: 1;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    opacity: 0.4;
}

/* 選中時的分頁點樣式 */
.swiper-pagination-custom-home-whatson .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background-color: #00000000; /* #FFF */
    border: #CB4810 3px solid;
    opacity: 1;
}

.whatson_main_events_detail {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatson_main_events_detail_title {
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1%;
    color: #003366;
}

.whatson_main_events_detail_content {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #666666;
}

.other-events_dividing {
    border-top: 2px solid #E8652B33;
    width: 100%;
}

/*========================================================================================================================================*/

.stu_glance_bannerSwiper {
    /*background: #FEEFE8;
    border-radius: 30px;*/
    max-width: 1440px;
    /*margin: auto;*/
    border-radius: 30px;
}

.stu_glance_main_swiper {
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 90px;
    padding-bottom: 70px;
    padding-left: 80px;
    padding-right: 80px;
    background-image: url("../img/StudentAtGlance_bg_2.jpg");
    background-color: hsla(0, 0%, 13%, 0.25);
    background-blend-mode: multiply;
    background-size: cover;

    background-repeat: no-repeat;
}

.stu_glance_top_bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 800;
    font-size: 42px;
    line-height: 46px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    align-items: center;
}

/* 3. 上一頁/下一頁按鈕樣式 */
.stu_glance_bannerSwiper .swiper-button-prev,
.stu_glance_bannerSwiper .swiper-button-next {
    /* 覆寫 Swiper 預設的 position: absolute */
    position: static;
    width: 60px;
    height: 60px;
    margin: 0 5px; /* 與旁邊元素的間距 */
    background-color: rgba(0, 0, 0, 0);
    border-radius: 50%; /* 圓形 */
    transition: background-color 0.3s ease;
    border: 3px solid #FFFFFF
}

/* 調整 Swiper 預設的箭頭圖示 */
.stu_glance_bannerSwiper .swiper-button-prev::after,
.stu_glance_bannerSwiper .swiper-button-next::after {
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
    height: 60%;
}


.stu_glance_bannerSwiper .swiper-button-prev,
.stu_glance_bannerSwiper .swiper-button-next {
    left: 30px;
    top: 40%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='17' viewBox='0 0 20 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.5078 9.73828L12.3203 15.9258L11.375 16.9141L9.39844 14.9375L10.3867 13.9922L14.2109 10.125H1.75H0.375V7.375H1.75H14.2109L10.3867 3.55078L9.39844 2.5625L11.375 0.628906L12.3203 1.61719L18.5078 7.80469L19.4961 8.75L18.5078 9.73828Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.stu_glance_bannerSwiper .swiper-button-prev {
    transform: rotate(180deg);
}

.stu_glance_bannerSwiper .swiper-button-prev:after {
    /*content: '←';*/
    content: '';
}
.stu_glance_bannerSwiper .swiper-button-next:after {
    /*content: '→';*/
    content: '';
}

.stu_glance_bannerSwiper .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.stu_glance_adus_bar {
    margin-top: -20px;
    margin-bottom: 45px;
}

.stu_glance_detail_bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.stu_glance_detail_bar_grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1 1;
    padding: 10px 20px;
    justify-content: center;
    max-width: 50%;
}
.stu_glance_more_items {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stu_glance_more_items_vert {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-direction: column;
}

.stu_glance_detail_bar_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.block_num {
    font-weight: 700;
    font-style: Bold;
    font-size: 80px;
    line-height: 80px;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}
.block_desc {
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1%;
    text-align: center;
    color: #FFFFFF;
}
.stu_glance_detail_bar_grid_desc {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    max-width: 350px;
    margin: 0 auto;
    opacity: 0.85;
}
.stu_glance_detail_bar_dividing_vert {
    height: unset;
    border-left: 2px solid #FFFFFF;
    opacity: 0.2;
}

.stu_glance_detail_bar_dividing_hori {
    height: 1px;
    width: 100%;
    border-top: 2px solid #FFFFFF;
    opacity: 0.2;
}

.stu_glance_adus {
    font-family: 'aduscript';
    font-weight: 400;
    font-size: 100px;
    line-height: 60px;
    letter-spacing: 0%;
    text-align: center;
    color: #FF996A;
    transform: rotate(356deg);
    transform-origin: center;
    display: inline-block;
}

.stu_glance_main_swiper_blue_type {
    background: #ECF3F8;
}

.stu_glance_main_swiper_blue_type .stu_glance_top_bar_title {
    color: #003366;
}

.stu_glance_bannerSwiper .stu_glance_main_swiper_blue_type .swiper-button-prev,
.stu_glance_bannerSwiper .stu_glance_main_swiper_blue_type .swiper-button-next {
    position: static;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255);
    border-radius: 50%;
    transition: background-color 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='17' viewBox='0 0 20 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.5078 9.73828L12.3203 15.9258L11.375 16.9141L9.39844 14.9375L10.3867 13.9922L14.2109 10.125H1.75H0.375V7.375H1.75H14.2109L10.3867 3.55078L9.39844 2.5625L11.375 0.628906L12.3203 1.61719L18.5078 7.80469L19.4961 8.75L18.5078 9.73828Z' fill='%23CB4810'/%3E%3C/svg%3E");
}

.stu_glance_bannerSwiper .stu_glance_main_swiper_blue_type .swiper-button-prev:hover,
.stu_glance_bannerSwiper .stu_glance_main_swiper_blue_type .swiper-button-next:hover {
    background-color: rgb(223, 222, 222);
}


.stu_glance_bannerSwiper .stu_glance_main_swiper_blue_type .swiper-button-prev::after,
.stu_glance_bannerSwiper .stu_glance_main_swiper_blue_type .swiper-button-next::after {
    font-size: 26px;
    font-weight: bold;
    color: #CB4810;
    height: 60%;
}



.stu_glance_main_swiper_blue_type .stu_glance_detail_bar_block {
    height: 100%;
}

.block_quota_top {
    width: 100%;
    display: flex;
    gap: 5px;
    margin-bottom: auto;
}
.block_title {
    font-weight: 800;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 1%;
    text-align: center;
    color: #003366;
    margin-bottom: 15px;
    padding: 0px 30px;
}
.block_content {
    font-weight: 600;
    font-size: 19px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    color: #003366;
}
.block_quota_bottom {
    width: 100%;
    display: flex;
    justify-content: right;
    gap: 5px;
    margin-top: auto;
}

.SwiperINSwiper {
    max-width: 100%;
    max-height: 337px;
    aspect-ratio: 600 / 337;
}

.SwiperINSwiper .swiper-slide img {
    aspect-ratio: 600 / 337;
}

/* 自定義分頁點容器 */
.swiper-pagination-custom-stu_glance {
    position: relative;
    display: flex;
    height: fit-content;
    align-items: center;
    width: fit-content !important;
    bottom: 0 !important;
    top: unset !important;
}

/* 分頁點樣式 */
.swiper-pagination-custom-stu_glance .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #CB4810;
    opacity: 1;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    opacity: 0.4;
}

/* 選中時的分頁點樣式 */
.swiper-pagination-custom-stu_glance .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border: #CB4810 3px solid;
    opacity: 1;
}

.stu_glance_row {
    max-width: 100%;
}

.stu_glance_detail_bar_block_connect {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    opacity: 0.85;
    width: fit-content;
    align-self: center;
    top: -10%;
    position: relative;
}

.whatuneed_main {
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    margin: auto;
    gap: 40px;
}

.whatuneed_main_title {
    font-weight: 800;
    font-size: 42px;
    line-height: 46px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #163970;
}

.whatuneed_main_body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
    gap: 20px;
}

.whatuneed_go_btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    font-size: 14px;
    font-weight: 900;
    color: #FFFFFF;
    background-color: #003366;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
.whatuneed_go_btn_arrow {
    position: relative;
    height: min-content;
    top: -2px;
}

.whatuneed_go_btn_arrow svg {
    width: 12px;
    height: 12px;
}

.whatuneed_block {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 3px solid #E8652B33;
    border-radius: 30px;
    max-width: 335px;
    padding-top: 60px;
    padding-bottom: 70px;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.2s linear;
    height: 100%;
}
.whatuneed_block:hover {
    border-color: #CB4810;
}

.whatuneed_block_content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    gap: 30px;
    align-items: center;
}
.whatuneed_block img {
    max-width: 150px;
    aspect-ratio: 1 / 1;
    width: 100%;
}
.whatuneed_block_desc {
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1%;
    text-align: center;
    color: #CB4810;
}

.swiper-controls-mobile {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.swiper-button-mb {
    display: flex;
    gap: 10px;
}

.home-mobile-banner {
    display: none;
}

.whatson_header_button_mb {
    display: none;
}

.mb_btn {
    display: none;
}

.header_mb {
    display: none;
}

.help-button span {
    width: max-content;
}

/*========================================================================================================================================*/
/*通用*/
/*========================================================================================================================================*/

.neo_mt_1 {margin-top: 5px;}
.neo_mt_2 {margin-top: 10px;}
.neo_mt_3 {margin-top: 20px;}
.neo_mt_4 {margin-top: 40px;}
.neo_mt_5 {margin-top: 50px;}
.neo_mt_6 {margin-top: 15px;}
.neo_mt_7 {margin-top: 30px;}

.neo_mt_-1 {margin-top: -5px;}
.neo_mt_-2 {margin-top: -10px;}
.neo_mt_-3 {margin-top: -15px;}
.neo_mt_-4 {margin-top: -20px;}

.neo_mb_4 {margin-bottom: 40px;}

.text-upper {
    text-transform: uppercase;
}

.img_height_all img {
    height: 100%;
    object-fit: cover;
}

.page_path_name {
    font-weight: 800;
    font-size: 14px;
    line-height: 20px;
    color: #CB4810;
    cursor: pointer;
}

.page_path_dot {
    width: 4px;
    height: 4px;
    background-color: #FF996A;
    border-radius: 999px;
    flex-shrink: 0;
}

.page_path {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1240px;
    padding: 10px 0px;
    margin: 0 auto;
}

.page_path_column {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.page_title {
    font-weight: 800;
    font-size: 70px;
    line-height: 75px;
    letter-spacing: 0%;
    color: #003366;
}

.section_block {
    display: flex;
    border-radius: 30px;
    max-width: 1440px;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 80px;
    padding-right: 80px;
    gap: 100px;
    justify-content: center;
}

.bg_ora {
    background-color: #CB4810;
}

.bg_light_ora {
    background-color: #FEEFE8;
}

.bg_white {
    background-color: #FFFFFF;
}

.bg_light_blue {
    background-color: #ECF3F8;
}

.block_img {
    max-width: 610px;
    width: 100%;
}

.block_swiper {
    max-width: 610px;
    width: 50%;
    position: relative;
}

.block_swiper_long_type {
    max-width: 1080px;
    width: 100%;
    position: relative;
}

.block_swiper_long_type img {
    max-width: 330px;
    border-radius: 30px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.block_swiper_long_type .basic-arrow-circle {
    background-color: #003366;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
}

.block_swiper_long_type .basic-arrow-icon path {
    width: 10px;
    height: 17px;
    stroke: #FFFFFF;
    stroke-width: 2.5px;
    background: #ffffff;
    align-self: center;
    
    width: 14px;
    height: 14px;
    stroke-width: initial;
    padding: 0;
}

.slide_desc {
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #CB4810;
    margin-top: 14px;
}

.block_img img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.block_desc {
    display: flex;
    flex-direction: column;
}

.basic-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 9999px;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease-in-out;
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    /*color: white;*/
    /*background-color: #CB4810;*/
}

.basic-button:hover {
    /*background-color: #B04E25;*/
    /*transform: translateY(-2px);*/
    /*box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);*/
}

.basic-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-left: 16px;
    /*background-color: white;*/
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
}

.basic-arrow-icon {
    width: 22px;
    height: 22px;
    /*background-color: #0d3d6f;*/
    /*border-radius: 50%;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*color: white;*/
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 12px;
    height: 12px;
    stroke-width: 0.5px;
    align-self: center;
}

.basic-button:hover .arrow-circle {
    /*transform: translateX(4px);*/
}

.ora_button .basic-button {
    background-color: #CB4810;
    color: #FFFFFF;
}
.ora_button .basic-button:hover {
    opacity: 0.85;
}
.ora_button .basic-arrow-circle {
    background-color: #ffffff;
}
.ora_button .basic-arrow-icon{
    stroke: #CB4810;
    background-color: #ffffff;
    width: 10px;
    height: 10px;
    stroke-width: 0.5px;
    fill: #CB4810;
}

.white_ora_button .basic-button {
    background-color: #ffffff;
    color: #CB4810;
}
.white_ora_button .basic-button:hover {
    opacity: 0.85;
}
.white_ora_button .basic-arrow-circle {
    background-color: #CB4810;
}
.white_ora_button .basic-arrow-icon{
    stroke: #ffffff;
    background-color: #CB4810;
    width: 10px;
    height: 10px;
    stroke-width: 0.5px;
    fill: #FFF;
}

.white_button .basic-button {
    background-color: #ffffff;
    color: #003366;
}
.white_button .basic-button:hover {
    opacity: 0.85;
}
.white_button .basic-arrow-circle {
    background-color: #003366;
}
.white_button .basic-arrow-icon{
    stroke: #ffffff;
    background-color: #003366;
    width: 10px;
    height: 10px;
    stroke-width: 0.5px;
    fill: #FFF;
}

.block_desc_title {
    font-weight: 800;
    font-size: 42px;
    line-height: 46px;
    letter-spacing: 0%;
    color: #003366;
}

.block_desc_body_text {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #666666;
}

.block_desc_body_text_big {
    font-weight: 600;
    font-size: 19px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #666666;
}

.block_desc_body_text_title {
    font-weight: 800;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #CB4810;
}

.body_text_title_big {
    font-weight: 800 !important;
}

.block_desc_body_text_title_blue {
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;
    color: #003366;
    text-align: center;
    vertical-align: middle;

}

.block_desc_body_text_title_light {
    font-weight: 800;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #CB4810;
}

.block_desc_event_text_title {
    font-weight: 600;
    font-size: 13px;
    color: #666666;
}

.block_desc_event_text {
    font-weight: 800;
    font-size: 16px;
    line-height: 20px;
    color: #CB4810;
}

.block_desc_body_text a{
    color: #CB4810;
    text-decoration: underline;
    cursor: pointer;
}

.block_desc_body_text a:hover{
    color: #b9410e;
}

.bg_ora .block_desc_body_text a:hover,
.bg_ora .block_desc_body_text a{
    color: #FFFFFF;
    text-decoration-color: #FFFFFF;
}

.btn_230 .basic-button {

    justify-content: space-between;
}

.btn_290 .basic-button {

    justify-content: space-between;
}

.btn_auto .basic-button {
    width: fit-content;
    justify-content: space-between;
}

/* 自定義分頁點容器 */
.swiper-pagination-custom {
    position: relative;
    display: flex;
    height: fit-content;
    align-items: center;
    width: fit-content !important;
    bottom: 0 !important;
    top: unset !important;
}

/* 分頁點樣式 */
.swiper-pagination-custom .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #CB4810;
    opacity: 1;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    opacity: 0.4;
}

/* 選中時的分頁點樣式 */
.swiper-pagination-custom .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border: #CB4810 3px solid;
    opacity: 1;
}

.block_video_thumbnail,
.block_video_thumbnail img {
    width: 100%;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    height: fit-content;
    /*max-height: 247px;*/
}

.block_video_thumbnail .play-button-circle {
    background-color: #FFFFFF;
}

.block_video_thumbnail:hover .play-button-circle {
    background-color: #FFFFFF !important;
}

.svg-bg-fff img {
    padding: clamp(35px, 10.32px + 3.797vw, 65px);
    background-color: #FFFFFF;
}

.big_banner {
    max-width: 1440px;
    margin: 0 auto;
    max-height: 480px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.big_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    max-height: 480px;
}

.big_banner_title {
    width: 100%;
    height: 100%;
    background-color: #0000004D;
    font-weight: 800;
    font-size: 70px;
    line-height: 75px;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sport_well_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.sport_well_block {
    max-width: unset;
}

.sport_well_block .whatuneed_block_desc{
    color: #003366;
}

@media (min-width: 992px) {

    .sport_well_block {
        grid-column: span 2;
    }
    .sport_well_block:last-child:nth-child(3n + 1) {
        grid-column: span 6;
    }

    .sport_well_block:last-child:nth-child(3n + 2),
    .sport_well_block:nth-last-child(2):nth-child(3n + 1) {
        grid-column: span 3;
    }
}

.sport_well_grid_4fr {
    grid-template-columns: repeat(8, 1fr);
}
@media (min-width: 992px) {

    .sport_well_grid_4fr .sport_well_block {
        grid-column: span 2;
    }
    .sport_well_grid_4fr .sport_well_block:last-child:nth-child(3n + 1) {
        grid-column: span 8;
    }

    .sport_well_grid_4fr .sport_well_block:last-child:nth-child(3n + 2),
    .sport_well_grid_4fr .sport_well_block:nth-last-child(2):nth-child(3n + 1) {
        grid-column: span 2;
    }
}

.sport_well_grid_6fr {
    grid-template-columns: repeat(6, 1fr);
}

.sport_well_grid_6fr .whatuneed_block {
    max-width: 216px;
    padding-bottom: 40px;
    padding-top: 40px;
}

.sport_well_grid_6fr .whatuneed_block_content {
    gap: 20px;
}

.sport_well_grid_6fr .whatuneed_block img {
    max-width: 70px;
    aspect-ratio: 1 / 1;
    width: 100%;
}
/*========================================================================================================================================*/

.btn_rotate_45 .basic-arrow-icon {
    transform: rotate(315deg);
}

.stu_sto {
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    width: 85%;
}

.GBOYUE_flex {
    align-items: flex-start;
    width: 100%;
    text-align: left;
}

.stu_sto_desc {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    text-align: left;
}

.contact_us_desc {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    text-align: left;
}

.video-container {
    border-radius: 30px;
    max-width: 1440px;
    margin: auto;
    position: relative;
}

#node_video {
    width: 100%;
    border-radius: 30px;
}

.node_video {
    width: 100%;
    border-radius: 30px;
}

/* 播放按鈕覆蓋層樣式 */
.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center; /* 水平置中 */
    align-items: center; /* 垂直置中 */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* 圓形播放按鈕的容器 */
.play-button-circle {
    width: 60px;
    height: 60px;
    background-color: #CB4810;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

.play-button-overlay:hover .play-button-circle {
    transform: scale(1.1);
    background-color: #CB4810;
}

.play-button-circle svg {
    width: 30%;
    height: auto;
    padding-left: 2px; 
}

.video-container.playing .play-button-overlay {
    opacity: 0;
    pointer-events: none;
}

.contact_us {
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    max-width: 500px;
    text-align: left;
}

.contact_us_img {
    max-width: 228px;
}

.contact_us_img img {
    border-radius: unset !important;
}

/*========================================================================================================================================*/

.page_path_block {
    padding: 0;
    justify-content: flex-start;
}

.stu_life_header_flex {
    align-items: flex-start;
    width: 85%;
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 20px;
}

@media (min-width: 993px) {
    .services-grid {
        grid-auto-flow: column;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(5, auto);
    }
    .sr_grid {
        grid-template-rows: repeat(2, auto);
    }
}

/* 服務項目樣式 */
.service-item {
    display: flex;
    align-items: center;
}

/* 項目編號 */
.service-item .number {
    color: #FF996A;
    margin-right: 16px;
    font-weight: 900;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
}

/* 服務項目連結 */
.service-item a {
    color: #CB4810;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    
    text-decoration: underline;
    text-decoration-color: #E8652B33;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    transition: color 0.2s ease-in-out;
}

.service-item a:hover {
    color: #C2410C;
}

.block_swiper_right_num {
    position: absolute;
    top: 0;
    right: 0;
    border-bottom-left-radius: 30px;
    background-color: #FEEFE8;
    font-weight: 800;
    font-size: 90px;
    line-height: 75px;
    letter-spacing: 0%;
    color: #CB4810;
    padding-left: 30px;
    padding-bottom: 30px;
    z-index: 99;
}

.block_swiper_right_num::before {
    content: '';
    position: absolute;
    top: 0;
    left: -28px; 
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at bottom left, transparent 30px, transparent 30px, #FEEFE8 30.5px);
    z-index: 999;
}

.block_swiper_right_num::after {
    content: '';
    position: absolute;
    bottom: -28px;
    right: 0;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at bottom left, transparent 30px, transparent 30px, #FEEFE8 30.5px);
    z-index: 999;
}

.block_swiper_left_num {
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-right-radius: 30px;
    background-color: #ECF3F8;
    font-weight: 800;
    font-size: 90px;
    line-height: 75px;
    letter-spacing: 0%;
    color: #CB4810;
    padding-right: 30px;
    padding-bottom: 30px;
    z-index: 999;
}

.block_swiper_left_num::before {
    content: '';
    position: absolute;
    top: 0;
    right: -29px; 
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at bottom right, transparent 30px, transparent 30px, #ECF3F8 30.5px);
    z-index: 999;
}

.block_swiper_left_num::after {
    content: '';
    position: absolute;
    bottom: -29px;
    left: 0;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at bottom right, transparent 30px, transparent 30px, #ECF3F8 30.5px);
    z-index: 999;
}

.stu_life {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 30px;
    justify-content: center;
}

.stu_life_long_type {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 40px;
    width: 80%;
}

.block_left_num {
    font-weight: 800;
    font-size: 90px;
    line-height: 75px;
    letter-spacing: 0%;
    color: #CB4810;
    width: max-content;
}

.stu_life_swiper_long {
    width: 120%;
}

.block_swiper_long_type .stu_life_swiper-button-next {
    right: 20%;
    top: 40%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='17' viewBox='0 0 20 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.5078 9.73828L12.3203 15.9258L11.375 16.9141L9.39844 14.9375L10.3867 13.9922L14.2109 10.125H1.75H0.375V7.375H1.75H14.2109L10.3867 3.55078L9.39844 2.5625L11.375 0.628906L12.3203 1.61719L18.5078 7.80469L19.4961 8.75L18.5078 9.73828Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.block_swiper_long_type .stu_life_swiper-button-prev {
    left: 30px;
    top: 40%;
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='17' viewBox='0 0 20 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.5078 9.73828L12.3203 15.9258L11.375 16.9141L9.39844 14.9375L10.3867 13.9922L14.2109 10.125H1.75H0.375V7.375H1.75H14.2109L10.3867 3.55078L9.39844 2.5625L11.375 0.628906L12.3203 1.61719L18.5078 7.80469L19.4961 8.75L18.5078 9.73828Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.block_swiper_long_type .stu_life_swiper-button-next,
.block_swiper_long_type .stu_life_swiper-button-prev {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #CB4810;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block_swiper_long_type .stu_life_swiper-button-next::after,
.block_swiper_long_type .stu_life_swiper-button-prev::after {
    content: '';
}

.block_swiper_long_type .stu_life_swiper-button-next.swiper-button-disabled, 
.block_swiper_long_type .stu_life_swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

/*========================================================================================================================================*/

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.feature-list .feature-list {
    margin-top: 0.8rem;
    padding-left: 1.5rem;
    flex-basis: 100%;
    margin-left: calc(8px + 0.8rem); 
}

.feature-list__item {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    display: flex;
    gap: 5px;
    color: #666666;
    /*
    align-items: flex-start;
    */
}

.feature-list__item:has(.feature-list){
    flex-wrap: wrap;
}

.feature-list__item {
    margin-bottom: 10px;
}

.feature-list__item::before {
    content: '';
    flex-shrink: 0;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    top: 9px;
}

.feature-list > .feature-list__item::before {
    width: 6px;
    height: 6px;
    background-color: #0b2545;
    border-radius: 50%;
}


.feature-list .feature-list .feature-list__item::before {
    width: 6px;
    height: 6px;
    border: 1.5px solid #0b2545;
    border-radius: 50%;
    background-color: transparent;
    top: 8px;
}


.feature-list__item a {
    color: #CB4810;
    text-decoration: underline;
}

.block_desc_body_text_big .feature-list__item {
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.2;
}

/*========================================================================================================================================*/

/* 外層容器 */
.rcs-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

/* --- 電腦版：按鈕群組樣式 --- */
.rcs-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    padding: 10px 0px;
}

.rcs-pill-button {
    padding: 15px 30px;
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 2px solid #EE672B66;
    background-color: #ffffff;
    color: #CB4810;
    outline: none;
}

.rcs-pill-button:not(.rcs-selected):hover {
    background-color: #FEF5F1;
}

.rcs-pill-button.rcs-selected {
    background-color: #CB4810;
    color: #ffffff;
    border-color: #CB4810;
}

.rcs-pill-button.rcs-selected:hover {
    background-color: #CB4810;
}

/* --- 手機版：下拉選單樣式 --- */
.rcs-dropdown-container {
    display: none; /* 預設隱藏 */
    position: relative;
}

.rcs-dropdown-toggle {
    width: 100%;
    padding: 13px 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 9999px;
    border: 2px solid #EE672B66;
    background-color: #ffffff;
    color: #CB4810;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.rcs-dropdown-toggle .rcs-arrow {
    transition: transform 0.3s ease;
    fill: #CB4810;
}

.rcs-dropdown-toggle.rcs-open .rcs-arrow {
    transform: rotate(180deg);
}

.rcs-dropdown-menu {
    display: none; /* 預設隱藏 */
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 10;
    padding: 0.5rem 0;
    max-height: 250px;
    overflow-y: auto;
}

.rcs-dropdown-menu .rcs-dropdown-item {
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.rcs-dropdown-menu .rcs-dropdown-item:hover {
    background-color: #FEF5F1;
}

.rcs-dropdown-menu .rcs-dropdown-item input[type="radio"] {
    display: none; /* 隱藏 radio button */
}

.rcs-dropdown-menu .rcs-dropdown-item label {
    cursor: pointer;
    color: #374151; /* gray-700 */
    font-weight: 500;
    width: 100%; /* 讓標籤填滿整個項目以便點擊 */
}

/* 當 radio 被選取時，改變其後面的 label 樣式 */
.rcs-dropdown-menu .rcs-dropdown-item input[type="radio"]:checked + label {
    color: #D95B29;
    font-weight: 600;
}

.neo_mw_1240 {
    max-width: 1240px !important;
}

.ap_main {
    max-width: 1240px;
    margin: auto;
}

.ap_main_body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 20px;
}

.rcs-container .ap_main_body,
.video_grid .ap_main_body {
    row-gap: 60px;
}


.ap_block {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    cursor: pointer;
    margin-bottom: auto;
}

.ap_block img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 30px;
}

.video_grid .ap_block img {
    aspect-ratio: 1.77 / 1;
    max-height: 225px;
}

.video_grid .play-button-circle {
    width: 60px;
    height: 60px;
}

.video_grid .play-button-circle svg {
    width: 30%;
}

.ap_block_content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    gap: 15px;
    align-items: center;
}

.ap_block_content_img {
    overflow: hidden;
    border-radius: 30px;
}

.ap_block_content_img:hover img {
    transform: scale(1.15);
}

.ap_block_content_img img {
    transition: all 0.3s;
}

.cs-accordion-title,
.ap_block_desc {
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1%;
    text-align: left;
    color: #003366;
    width: 100%;
}

/*========================================================================================================================================*/

.color_white {
    color: #FFFFFF;
}

.bg_ora hr {
    color: #FFFFFF;
    border-top: 2px solid;
    opacity: 0.2;
}

.whatson_header_button, .whatson_header_button .basic-button {
    width: unset !important;
}

/*========================================================================================================================================*/

.upcoming_event_block {
    gap: 50px;
    max-width: 1240px;
    margin: 0;
}
.upcoming_event_block .block_swiper {
    width: 60%;
    max-width: 673px;
}
.upcoming_event_block .block_desc {
    width: 40%;
}
.upcoming_event_swiper {
    width: clamp(100%, calc(100% + (100vw - 1280px) * 0.445), 107.8%);
}

.upcoming_event_swiper::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 100%;
    background: linear-gradient( 90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100% );
    right: 0;
    top: 0;
    z-index: 99;
}

.two_over_block {
    gap: 40px;
    max-width: 1240px;
    margin: 0;
    padding: 60px;
    flex-direction: column;
    height: 100%;
}
.two_over_swiper {
    width: clamp(100%, calc(100% + (100vw - 1280px) * 0.445), 107.8%);
}

.two_over_swiper::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 100%;
    background: linear-gradient( 90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100% );
    right: 0;
    top: 0;
    z-index: 99;
}

.two_over_swiper .swiper-slide {
    height: auto;
}
.two_over_swiper .block_quota_top {
    margin-bottom: unset;
}

.ue_other-events .event-item-img {
    max-width: 280px;
    aspect-ratio: 1.6 / 1;
}

.ue_other-events .whatson_tag {
    background-color: #FEEFE8;
}
#academic-year-dropdown {
    margin-left: auto;
}
.ue_other-events_btn {
    display: flex;
    gap: 20px;
    width: 100%;
}

.ue_other-events {
    width: 100%;
}

/*===================================================*/
/* --- 下拉選單組件樣式 --- */
.custom-dropdown {
    position: relative;
    width: 12rem; /* 192px */
}

.custom-dropdown__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 15px 13px 18px;
    background-color: #fff;
    border: 2px solid #EE672B66;
    border-radius: 9999px;
    color: #CB4810;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.custom-dropdown__button span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-dropdown__button:focus {
    border: 2px solid #CB4810;
}

.custom-dropdown__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* 防止圖示被壓縮 */
    width: 22px;
    height: 22px;
    margin-left: 0.5rem; /* 8px */
    background-color: #CB4810;
    border-radius: 50%;
}

.custom-dropdown__icon-wrapper svg {
    transform: translate(0.5px, 1px);
}

.custom-dropdown__icon {
    width: 0.75rem; /* 12px */
    height: 0.75rem; /* 12px */
    color: white;
    transition: transform 0.3s ease;
}

.custom-dropdown__icon.rotate-180 {
    transform: rotate(180deg);
}

.custom-dropdown__menu {
    display: none; /* 預設隱藏 */
    position: absolute;
    z-index: 10;
    left: auto;
    right: 0px;
    margin-top: 0.5rem; /* 8px */
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 5px 20px 0px #00000026;
    overflow: hidden;
    z-index: 1000;
}

#date-picker-dropdown-mobile .custom-dropdown__menu,
#date-picker-dropdown .custom-dropdown__menu {
    left: auto !important;
    right: 0px !important;
}

.custom-dropdown__list {
    list-style: none;
    padding: 35px 40px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
    font-weight: 700;
    width: max-content;
    box-sizing: border-box;
}

.custom-dropdown__list a {
    text-decoration: none;
    color: #003366;
    display: block;
    transition: color 0.2s;
}

.custom-dropdown__list a:hover {
    color: #CB4810;
}

.custom-dropdown__list a.is-selected {
    color: #CB4810;
}

/* --- 日期選擇器樣式 --- */
.calendar-wrapper {
    width: fit-content;
    padding: 20px 30px;
    box-sizing: border-box;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: #CB4810;
    font-weight: 800;
    font-size: 20px;
}

.calendar-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #CB4810;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.calendar-day-name {
    font-weight: 800;
    font-size: 15px;
    color: #003366;
    padding-bottom: 0.5rem;
}

.calendar-date {
    font-size: 15px;
    font-weight: 600;
    color: #CB4810;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s, color 0.2s;
    width: 48px;
    height: 48px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-date:hover:not(.is-selected):not(.is-other-month) {
    background-color: #d1661e;
    color: #FFF;
}

.calendar-date.is-other-month {
    color: #6666666c;
    cursor: default;
}

.calendar-date.is-selected {
    background-color: #CB4810;
    color: #fff;
}

.calendar-date.is-today:not(.is-selected) {
    border: 2px solid #EE672B66;
}

.mobile-container {
    display: none; /* 預設隱藏 */
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.mobile-segmented-controls, .mobile-dropdown-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
}

.mobile-dropdown-controls .custom-dropdown {
    flex-grow: 1; /* 讓下拉選單佔滿剩餘空間 */
}

.segmented-button {
    padding: 13px 0;
    border: 2px solid #EE672B66;
    background-color: #fff;
    color: #CB4810;
    border-radius: 9999px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    flex-grow: 1;
}

.segmented-button.is-active {
    background-color: #CB4810;
    color: #fff;
    border-color: #CB4810;
}

#date-picker-dropdown-mobile {
    width: auto;
}

.calendar-icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #EE672B66;
    background-color: #fff;
    color: #CB4810;
    border-radius: 50%;
    cursor: pointer;
}

.desktop-container,
.mobile-container {
    margin-bottom: 45px;
}

/* --- 響應式媒體查詢 --- */
@media (max-width: 950px) {
    .desktop-container {
        display: none;
    }
    .mobile-container {
        display: flex;
    }
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding: 1rem;
}
.page-link, .next-link, .prev-link {
    font-weight: 700;
    color: #CB4810;
    cursor: pointer;
    transition: opacity 0.2s;
    background: none;
    border: none;
    font-size: 15px;
    padding: 0;
    width: 50px;
    height: 50px;
}
.page-link:hover, .next-link:hover, .prev-link:hover {
    opacity: 0.7;
    color: #CB4810;
}
.page-link.is-active {
    background-color: #FEEFE8;
    color: #CB4810;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.next-link svg, .prev-link svg {
    width: 12px;
    height: 20px;
}

/*===================================================*/

.event_detail {
    align-items: flex-start;
}

.event_detail_left {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.event_detail_left_block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.event_detail_left_block img {
    border-radius: 30px;
}

.event_detail_right {
    width: 25%;
}

.event_detail_right_block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    padding: 30px;
    border-radius: 30px;
}

.event_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.venue-list {
    list-style-type: none;
    counter-reset: item;
    padding-left: 0;
}
.venue-list li {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}
.venue-list li::before {
    counter-increment: item;
    content: counter(item) ".";
    margin-right: 1rem;
}

.venue-list-la {
    list-style-type: none;
    counter-reset: item;
    padding-left: 0;
}
.venue-list-la li {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.venue-list-la li::before {
    counter-increment: item;
    content: counter(item, lower-alpha) ". ";
    margin-right: 1rem;
}

.event_detail_all {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/*========================================================================================================================================*/
/*==========================================================================*/
.cs-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    background-color: #fff;
}

/* 折疊項目 */
.cs-accordion-item {
    border-bottom: 2px solid #EE672B66;
}

.page .cs-accordion-item {
    border-bottom: 2px solid #E8652B33;
}

.cs-accordion-item:first-child {
    border-top: 2px solid #E8652B33;
}

#slide-out-menu .cs-accordion-item:first-child {
    border-top: unset;
}

/* 標題按鈕 */
.cs-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 0;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

/* 標題文字 */
.cs-accordion-title {
    transition: color 0.3s ease;
}

/* 標題活動狀態 (打開時) */
.cs-accordion-item.cs-open .cs-accordion-title {
    color: #CB4810;
    display: flex;
}
/* Sports... 標題的特定顏色 */
.cs-accordion-title.cs-title-blue {
     color: #003366;
}
 .cs-accordion-item.cs-open .cs-accordion-title.cs-title-blue {
    color: #CB4810;
}

.cs-accordion-item .dropdown-menu {
    padding: 0;
}


/* 活動狀態的圓點 */
.cs-active-dot {
    display: inline-block;
    width: 17px;
    height: 17px;
    background-color: #FF996A;
    border-radius: 9999px;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
    margin-top: 3px;
}

/* +/- 圖示 */
.cs-accordion-icon {
    font-size: 35px;
    font-weight: 700;
    color: #CB4810;
    line-height: 30px;
    display: flex;
    transform: translateY(-2.5px);
}

/* 內容區域 */
.cs-accordion-content {
    display: none;
    overflow: hidden;
    padding-bottom: 30px;
}
.cs-accordion-content-inner {
     padding: 1.25rem;
     padding-top: 0;
     padding: 0;
}

/* 表格容器 */
.cs-table-wrapper {
    overflow: hidden;
    border: 2px solid #E8652B33;
    border-radius: 15px;
}

/* 表格 */
.cs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.cs-table thead {
    background-color: #FEEFE8;
}

.cs-table tbody {
    background-color: #FFFFFF;
}

.cs-table th,
.cs-table td {
    padding: 24px 30px;
    text-align: left;
    border-right: 2px solid #E8652B33;
}

.cs-table th:last-child,
.cs-table td:last-child {
    border-right: none;
}

.cs-table th {
    font-weight: 800;
    color: #666666;
}

.cs-table tbody tr {
    border-top: 2px solid #E8652B33;
}

.cs-table td {
    color: #666666;
}

.cs-table .cs-subtext {
    color: #666666;
}

@media (min-width: 640px) {
    .cs-table {
        font-size: 1rem;
    }
}
@media (min-width: 992px) {
    .cs-table {
        table-layout: fixed;
    }
}
@media (max-width: 992px) {
    .cs-table-wrapper {
        /*overflow-x: auto;*/
        width: fit-content;
    }
    .cs-table {
        width: 1000px;
    }
    .cs-table th, .cs-table td {
        padding: 15px 20px;
    }
    .cs-table th {
        line-height: 11px;
    }
}
@media (max-width: 500px) {
    .cs-table {
        width: 570px;
    }
}
/*==========================================================================*/
/* --- 彈出視窗 (Popup) 樣式 --- */
.ch-popup-overlay {
    display: none; /* 預設隱藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.ch-popup-overlay.is-visible {
    display: flex; /* 顯示時使用 flex 置中 */
    flex-direction: column;
    padding: 20px 0;
    padding-bottom: 120px;
}

.ch-popup-container {
    background-color: #fcf5ef;
    padding: 60px;
    border-radius: 1rem;
    position: relative;
    max-width: 700px;
    color: #666666;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}


.popup-close-btn-area {
    position: relative;
    width: 100%;
    max-width: 1360px;
    height: 120px;
    flex-shrink: 0;
}

.ch-popup-close-btn {
    position: absolute;
    top: 0px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #CB4810;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 36px;
    font-weight: bold;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.ch-popup-close-btn span {
    display: flex;
    justify-content: center;
    transform: translateY(-3px);
}

.ch-popup-title {
    color: #003366;
    font-size: 42px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1.5rem;
    /*width: max-content;*/
}

.ch-popup-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    /*width: max-content;*/
}

.ch-popup-list li {
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
    position: relative;
}

.ch-popup-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #003366;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.4;
    top: -3.5px;
}

.ch-popup-list strong {
    display: block;
    color: #CB4810;
    font-weight: 800;
}

.video-popup-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 1240px;
}

@media (orientation: landscape) {
    .video-popup-container {
        width: 80%;
    }
    .ch-popup-overlay.is-visible {
        padding-bottom: 20px;
    }
    .popup-close-btn-area {
        height: 20px !important;
    }
}
/* --- 樣式結束 --- */
/*========================================================================================================================================*/

.color-ora {
    color: #CB4810;
}

.bg-light-ora-tr td {
    background-color: #FEEFE8;
}

/*
.bg_img_size_500 {
    background-size: 500px;
}

.bg_img_size_1000 {
    background-position: left -240px top -300px;
    background-size: 1000px;
}
*/

.bg_img_top_left_ora {
    background-image: url("../img/bg_top_left_ora.svg");
    background-position: left 0 top 0;
    background-repeat: no-repeat;
    background-size: unset;
}

.bg_img_top_left_blue,
.bg_img_top_left_ora_dark {
    background-image: url("../img/bg_top_left_blue.svg");
    background-position: left 0 top 0;
    background-repeat: no-repeat;
    background-size: unset;
}

.bg_img_top_right_ora {
    background-image: url("../img/bg_top_right_ora.svg");
    background-position: right 0 top 0;
    background-repeat: no-repeat;
    background-size: unset;
}

.bg_img_top_right_blue {
    background-image: url("../img/bg_top_right_blue.svg");
    background-position: right 0 top 0;
    background-repeat: no-repeat;
    background-size: unset;
}

.bg_img_top_right_ora_dark {
    background-image: url("../img/bg_top_right_ora_dark.svg");
    background-position: right 0 top 0;
    background-repeat: no-repeat;
    background-size: unset;
}

.bg_img_tlbr_blue,
.bg_img_tlbr_ora_dark {
    background-image: url("../img/cu_br.svg"), url("../img/cu_tl.svg");
    background-position: left 0 top 0, right 0 bottom 0;
    background-repeat: no-repeat, no-repeat;
    background-size: unset;
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg_img_top_right_ora_mid {
    background-image: url("../img/bg_top_right_ora_mid.svg");
    background-position: right 0 top 0;
    background-repeat: no-repeat;
    background-size: unset;
}

.bg_img_top_right_blue_mid {
    background-image: url("../img/bg_top_right_blue_mid.svg");
    background-position: right 0 top 0;
    background-repeat: no-repeat;
    background-size: unset;
}

.bg_img_top_right_ora_small {
    background-image: url("../img/bg_top_right_ora_small.svg");
    background-position: right 0 top 0;
    background-repeat: no-repeat;
    background-size: unset;
}

.bg_img_top_right_blue_small {
    background-image: url("../img/bg_top_right_blue_small.svg");
    background-position: right 0 top 0;
    background-repeat: no-repeat;
    background-size: unset;
}

.bg_img_top_right_ora_dark_small {
    background-image: url("../img/bg_top_right_ora_dark_small.svg");
    background-position: right 0 top 0;
    background-repeat: no-repeat;
    background-size: unset;
}

/* 將旋轉背景應用到 body 的偽元素上 */
body::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 60%;
    left: 57%;
    width: 80vmin;
    height: 80vmin;
    max-width: 795px;
    transform-origin: center center; /* 確保從中心點旋轉 */
    background-image: url('../img/bg_c_bl.svg');
    background-size: contain; /* 確保圖片完整顯示 */
    background-repeat: no-repeat;
    background-position: center;
    /* 將 transform 的原點設置在元素的中心 */
    transform: translate(-50%, -50%);
    /* 應用動畫：名稱、持續時間、速度曲線、無限次 */
    animation: spin 10s linear infinite;
}

body:has(.bg_img_hidden)::before {
    display: none;
  }

/* 定義旋轉動畫 */
@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/*========================================================================================================================================*/

/* --- 選單容器 --- */
.menu-wrapper {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0px 50px 50px 50px;
    display: flex;
    justify-content: center;
    z-index: 10; /*150*/
    box-sizing: border-box;
    margin-bottom: -50px;
    max-width: calc(100% + (100vw - 100px));
}

.menu-content {
    position: relative;
    /* max-width: 1024px; */
    width: fit-content;
    display: flex;
    align-items: center;
}

/* --- 滾動按鈕 --- */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: #E8652B33;
    color: #E8652B33;
    border-radius: 9999px;
    width: 2.5rem; /* 40px */
    height: 2.5rem; /* 40px */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
    padding: 0;
}

#scroll-left {
    left: 10px;
}

#scroll-right {
    right: 10px;
}

.scroll-btn svg {
    width: 15px;
    height: 15px;
}

.hidden {
    display: none;
}

/* --- 選單項目區域 --- */
.menu-container {
    width: 100%;
    background-color: white;
    border-radius: 9999px;
    box-shadow: 0px 2px 12px 0px #00000026;
    padding: 0 20px;
    overflow: hidden;
}

.menu-items {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth; /* 平滑滾動 */
}

/* 隱藏滾動條 */
.menu-items::-webkit-scrollbar {
    display: none;
}
.menu-items {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* --- 選單連結 --- */
.menu-items a {
    display: block;
    padding: 24px 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #003366;
    border-radius: 9999px;
    transition: color 0.2s ease-in-out;
    text-decoration: none;
}

.menu-items a:hover {
    color: #ea580c;
}

.menu-items a.active {
    color: #c2410c;
}

/* --- 左右漸變透明遮罩 --- */
.menu-container::before,
.menu-container::after {
    content: '';
    position: absolute;
    top: 1px;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    z-index: 2;
}

/* 左邊遮罩 */
.menu-container::before {
    left: 0;
    background: linear-gradient(to right, white 55%, rgba(255, 255, 255, 0));
    border-radius: 9999px;
}

/* 右邊遮罩 */
.menu-container::after {
    right: 0;
    background: linear-gradient(to left, white 55%, rgba(255, 255, 255, 0));
    border-radius: 9999px;
}

/* 用於顯示遮罩的 Class */
.menu-container.show-fade-left::before,
.menu-container.show-fade-right::after {
    opacity: 1;
}

.remark_desc {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    text-align: left;
    margin-top: 50px;
}

.two_over_desc_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: left;
    flex-grow: 1;
}

.two_over_people {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.two_over_people_left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.two_over_people_left_img {
    border-radius: 9999px;
    max-width: 100px;
    aspect-ratio: 1 / 1;
}

.two_over_people_left_img img {
    width: 100%;
}

.two_over_people_left_desc {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 150px;
}

.ora_btn {
    width: 50px;
    height: 50px;
    font-size: 14px;
    font-weight: 900;
    color: #FFFFFF;
    background-color: #CB4810;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.mega-menu-lv1 {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #CB4810;
}

.mega-menu-lv2 {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #666666;
}

.text-left {
    text-align: left;
    width: 100%;
}

/* 定義瀑布流佈局 */
.collage-container {
    max-width: 1240px;
    margin: 0 auto;
    column-count: 3;
    column-gap: 20px;
}

/* 網格項目通用樣式 */
.collage-item {
    overflow: hidden;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    break-inside: avoid;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.collage-item:hover img {
    transform: scale(1.15); /* 懸停時放大 */
}

.collage-item img {
    width: 100%;
    height: auto; /* 高度自動，以保持圖片比例 */
    display: block;
    transition: all 0.3s;
}

/* 針對中等螢幕（如平板）的響應式設計 */
@media (max-width: 768px) {
    .collage-container {
        column-count: 2; /* 在小平板上變為 2 欄 */
        gap: 15px;
    }
    .collage-item {
        margin-bottom: 10px;
    }
}

.photo-popup-container {
    width: 100%;
    /*aspect-ratio: 16 / 9;*/
    /*max-width: 800px;*/
}

.photo_popup_swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.photo_popup_swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.photo_popup_swiper .swiper-slide img {
    height: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0;
    max-width: 800px;
}

/* 步驟 1: 為兩個按鈕設置通用的圓形外觀 */
.photo-popup .swiper-button-prev,
.photo-popup .swiper-button-next {
  width: 60px;  /* 按鈕寬度 */
  height: 60px; /* 按鈕高度 */
  background-color: transparent; /* 背景透明 */
  border: 2px solid white; /* 白色邊框 */
  border-radius: 50%; /* 設置為圓形 */
  right: 40px; /* 繼承 Swiper 預設變數 */
  left: auto;
  transition: background-color 0.3s ease; /* 添加平滑過渡效果 */
}

/* 為左按鈕（prev）設置位置 */
.photo-popup .swiper-button-prev {
  left: 40px;
  right: auto;
}

/* 步驟 2: 移除 Swiper 預設的箭頭圖標 */
.photo-popup .swiper-button-prev::after,
.photo-popup .swiper-button-next::after {
  content: ''; /* 清空預設內容 */
}

/* 步驟 3: 使用 background-image 放入新的 SVG 箭頭圖標 */
.photo-popup .swiper-button-prev {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.16992 6.54883L0.496094 5.875L1.16992 5.23047L5.38867 1.01172L6.0625 0.337891L7.38086 1.65625L6.70703 2.33008L4.09961 4.9375L12.625 4.9375H13.5625V6.8125H12.625L4.09961 6.8125L6.70703 9.44922L7.38086 10.0938L6.0625 11.4414L5.38867 10.7676L1.16992 6.54883Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45%; /* 調整圖標在圓圈內的大小 */
}

.photo-popup .swiper-button-next {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.8008 6.54883L8.58203 10.7676L7.9375 11.4414L6.58984 10.0938L7.26367 9.44922L9.87109 6.8125H1.375H0.4375V4.9375H1.375H9.87109L7.26367 2.33008L6.58984 1.65625L7.9375 0.337891L8.58203 1.01172L12.8008 5.23047L13.4746 5.875L12.8008 6.54883Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45%; /* 調整圖標在圓圈內的大小 */
}

.photo_popup_swiper_mb {
    height: 40px;
    width: 100%;
    justify-content: center;
    gap: 15px;
    align-items: flex-end;
    display: none;
}

/* (可選) 步驟 5: 調整在小螢幕上的尺寸 */
@media (max-width: 950px) {
    .photo-popup {
        max-width: 100%;
        padding-bottom: 50px;
    }
    .photo_popup_swiper_mb {
        display: flex;
    }
    .photo-popup-container {
        margin: auto 0;
    }
    .photo_popup_swiper_mb .swiper-button-prev,
    .photo_popup_swiper_mb .swiper-button-next {
        position: relative;
        left: unset;
        right: unset;
        bottom: unset;
        top: unset;
    }
    .photo-popup .swiper-button-prev,
    .photo-popup .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    .photo_popup_swiper .swiper-button-prev,
    .photo_popup_swiper .swiper-button-next {
        display: none;
    }
}

.whatuneed_block_blue_border {
    border: 3px solid #00336621;
}

.whatuneed_block_blue_border:hover {
    border-color: #003366;
}

.body_text_ora_highlight {
    font-weight: 800;
    color: #CB4810;
}

.cs-accordion-content-inner .dropdown-menu {
    position: relative;
    display: block;
    border: unset;
    flex-basis: calc(45% - 0.5rem);
}

/* --- 選單與遮罩 --- */
#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40000;
    transition: opacity 0.3s ease-in-out;
}

#slide-out-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 690px; /* 384px */
    background-color: white;
    z-index: 50000;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: auto;
    padding: 0 80px;
}

#slide-out-menu .cs-accordion-content-inner {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* JS 控制的通用 Class (保持不變) */
.hidden {
    display: none;
}
.opacity-0 {
    opacity: 0;
}
.translate-x-full {
    transform: translateX(100%);
}
.translate-y-full {
    transform: translateY(-100%);
}

/* --- 選單內部樣式 (已加上 ssm- 前綴) --- */
.ssm-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 0;

    gap: 15px;
}

.ssm-menu-header .ssm-help-text {
    font-size: 0.875rem;
    color: #6c757d;
    display: flex;
    align-items: center;
}

.ssm-menu-header .ssm-help-text svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

#close-menu-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

#close-menu-btn:hover {
    background-color: #e9ecef;
}

#close-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #495057;
}

.ssm-menu-content {
    flex-grow: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.ssm-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ssm-menu-content li + li {
    margin-top: 0.5rem;
}

.ssm-menu-content summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: #343a40;
    cursor: pointer;
    list-style: none; /* 移除預設的 marker */
    border-bottom: 1px solid #e9ecef;
}
summary::-webkit-details-marker { display: none; } /* For Chrome */
summary::marker { display: none; } /* For Firefox */

.ssm-menu-content summary:hover {
    color: #dd6b20;
}

.ssm-details-marker {
    transition: transform 0.2s ease-in-out;
}
details[open] > summary .ssm-details-marker {
    transform: rotate(45deg);
}
details[open] > summary {
    color: #dd6b20;
}

.ssm-details-content {
    padding: 0.75rem 0 0.5rem 1rem;
}

.ssm-details-content .ssm-overview-link {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}
.ssm-details-content .ssm-overview-link:hover {
    color: #000;
}

.ssm-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ssm-details-grid h4, .ssm-details-section h4 {
    font-weight: bold;
    color: #495057;
    margin-bottom: 0.5rem;
}

.ssm-details-grid a, .ssm-details-section a {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}
.ssm-details-grid a:hover, .ssm-details-section a:hover {
    color: #000;
}

.ssm-details-section {
    margin-top: 1rem;
}

.ssm-menu-footer {
    padding: 1.5rem 0;
    margin-top: auto;
}

.ssm-menu-footer a {
    font-size: 0.875rem;
    color: #6c757d;
    margin-right: 1rem;
}
.ssm-menu-footer a:hover {
    color: #000;
}

@media screen and (max-width: 768px) {
    #slide-out-menu {
        max-width: 100%;
        padding: 0 15px;
    }
}


/* --- 頂部搜尋欄樣式 --- */
#search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 50000; /* 比側邊選單更高 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.ssh-search-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    min-height: 416px;
}

.close-search-btn-flex {
    position: relative;
    display: flex;
    justify-content: end;
    max-width: 1440px;
}

#close-search-btn {
    background-color: #CB4810;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
#close-search-btn:hover {
    background-color: #be430f;
}
#close-search-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.ssh-search-input-wrapper {
    position: relative;
    margin-bottom: 30px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
}
.ssh-search-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #003366;
    font-size: 42px;
    font-weight: 800;
    padding: 0.5rem 2.5rem 0.5rem 0;
    color: #003366;
    outline: none;
    transition: border-color 0.2s;
}
.ssh-search-input::placeholder {
    color: #666666;
    opacity: 0.2;
}


.ssh-search-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.75rem;
    height: 1.75rem;
    color: #003366;
    cursor: pointer;
}

.ssh-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1240px;
    margin: 0 auto;
}

.ssh-tag-btn {
    background-color: transparent;
    border: 2px solid #EE672B66;
    color: #CB4810;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}
.ssh-tag-btn:hover {
    background-color: #dd6b20;
    color: white;
}

/* 頁碼容器 */
#event_list-pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
    margin-top: 50px;
}

/* 頁碼連結的基本樣式 */
.event_list-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    text-decoration: none;
    color: #CB4810 !important;
    border-radius: 9999px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}

#event_list-pagination-list a {
    display: flex;
}

#event_list-pagination-list a svg {
    color: #CB4810;
    cursor: pointer;
    width: 9px;
    height: 15px;
}

/* 當前選中頁碼的樣式 */
.event_list-pagination-active {
    background-color: #FEEFE8;
    font-weight: bold;
    width: 3rem;
    height: 3rem;
}

.neo_mtb_100 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.neo_mt_100 {
    margin-top: 110px;
}

.neo_mt_80 {
    margin-top: 80px;
}

.neo_mb_80 {
    margin-bottom: 80px;
}


.clear-filter-container {
    width: 100%;
    text-align: center;
}
#clear-filters-btn {
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border: 2px solid #EE672B66;
    border-radius: 9999px;
    color: #CB4810;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
#clear-filters-btn:hover {
    background-color: #fdfdfd;
    border-color: #CB4810;
}
#no-results-message {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
    margin-top: 118px;
}

.date-btn {
    /*justify-content: center;*/
    gap: 12px;
    padding-right: 30px;
}

.minH .other-events .other-events_dividing:first-child {
    display: none;
}

.cs-table .body_text_title_big th {
    font-weight: 800;
}

.feature-list__item_pra {
    width: 90%;
}

.search_list_flex .event-item {
    margin-top: 0px;
}

.top-bar-right .search-icon {
    padding-left: 20px;
    cursor: pointer !important;
    color: #FFF !important;
}
/*mega*/
.cs-overview {
    padding-bottom: 30px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #003366;
}

.mini_banner_flex_play_cion {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 22px !important;
    height: 22px !important;
    aspect-ratio: 1/1 !important;
}



/* 動畫 Class */
.progress-running {
    animation: progress 5s linear forwards;
}

/* 暫停 Class */
.progress-paused .progress-running {
    animation-play-state: paused;
}

@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}

.minH {
    min-height: 450px;
}

.page_path b {
    font-weight: 800;
}

#help-popup {
    padding: 100px 0;
}

.popup-close-btn-area {
    position: unset;
    height: 0 !important;
}

.popup-close-btn-area .ch-popup-close-btn {
    top: 40px;
    right: 40px;
}

.event-item-img-block {
    overflow: hidden;
    border-radius: 15px;
    height: auto;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.ue_other-events .event-item-img-block {
    max-width: 280px;
    aspect-ratio: 1.6 / 1;
}

.event-item-img-block:hover img {
    transform: scale(1.15);
}

.event-item-img-block img {
    transition: all 0.3s;
}

.rcs-dropdown-item input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.rcs-dropdown-item label {
    position: relative;
    padding-left: 35px; /* 為自訂 checkbox 留出空間 */
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
    width: 100%;
    margin-left: 0; /* 覆寫先前的樣式 */
}

/* 建立自訂 checkbox 的外框 */
.rcs-dropdown-item label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease;
}

/* 當 checkbox 被選取時的樣式 */
.rcs-dropdown-item input[type="checkbox"]:checked + label::before {
    background-color: #CB4810;
    border-color: #CB4810;
}

/* 建立打勾圖示 */
.rcs-dropdown-item label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 40%;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0; /* 預設隱藏 */
    transition: opacity 0.2s ease;
}

/* 當 checkbox 被選取時顯示打勾圖示 */
.rcs-dropdown-item input[type="checkbox"]:checked + label::after {
    opacity: 1;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2.5px;
}

.bg_light_ora .block_swiper_right_num {
    background-color: #FEEFE8;
}
.bg_light_ora .block_swiper_right_num::before {
    background: radial-gradient(circle at bottom left, transparent 30px, transparent 30px, #FEEFE8 30.5px);
}
.bg_light_ora .block_swiper_right_num::after {
    background: radial-gradient(circle at bottom left, transparent 30px, transparent 30px, #FEEFE8 30.5px);
}

.bg_light_blue .block_swiper_right_num {
    background-color: #ECF3F8;
}
.bg_light_blue .block_swiper_right_num::before {
    background: radial-gradient(circle at bottom left, transparent 30px, transparent 30px, #ECF3F8 30.5px);
}
.bg_light_blue .block_swiper_right_num::after {
    background: radial-gradient(circle at bottom left, transparent 30px, transparent 30px, #ECF3F8 30.5px);
}

.bg_light_ora .block_swiper_left_num {
    background-color: #FEEFE8;
}
.bg_light_ora .block_swiper_left_num::before {
    background: radial-gradient(circle at bottom right, transparent 30px, transparent 30px, #FEEFE8 30.5px);
}
.bg_light_ora .block_swiper_left_num::after {
    background: radial-gradient(circle at bottom right, transparent 30px, transparent 30px, #FEEFE8 30.5px);
}


.bg_light_blue .block_swiper_left_num {
    background-color: #ECF3F8;
}
.bg_light_blue .block_swiper_left_num::before {
    background: radial-gradient(circle at bottom right, transparent 30px, transparent 30px, #ECF3F8 30.5px);
}
.bg_light_blue .block_swiper_left_num::after {
    background: radial-gradient(circle at bottom right, transparent 30px, transparent 30px, #ECF3F8 30.5px);
}

/*========================================================================================================================================*/
/*========================================================================================================================================*/

.ora_btn,
.whatuneed_go_btn,
.basic-arrow-circle,
.arrow-circle {
    overflow: hidden;
}

.basic-button .basic-arrow-circle .basic-arrow-icon,
#go-to-top-button svg,
.ap_block .whatuneed_go_btn_arrow svg,
.whatuneed_block .whatuneed_go_btn_arrow svg,
.all-announcements-btn .arrow-icon svg,
.arrow-circle .arrow-icon {
    position: relative;
}

.ora_btn:hover svg,
.cta-button:hover .arrow-circle .basic-arrow-icon,
.basic-button:hover .basic-arrow-circle .basic-arrow-icon,
.ap_block:hover .whatuneed_go_btn_arrow svg,
.whatuneed_block:hover .whatuneed_go_btn_arrow svg,
.all-announcements-btn:hover .arrow-icon svg,
.whatson_header_button:hover .arrow-circle .arrow-icon {
    animation: moveRight 0.3s linear forwards;
}

.ora_btn:not(:hover) svg,
.cta-button:not(:hover) .arrow-circle .basic-arrow-icon,
.basic-button:not(:hover) .basic-arrow-circle .basic-arrow-icon,
.ap_block:not(:hover) .whatuneed_go_btn_arrow svg,
.whatuneed_block:not(:hover) .whatuneed_go_btn_arrow svg,
.all-announcements-btn:not(:hover) .arrow-icon svg,
.whatson_header_button:not(:hover) .arrow-circle .arrow-icon {
    animation: moveLeft 0.3s linear forwards; /* 離開時觸發反向動畫 */
}

.photo-popup .swiper-button-prev:not(:hover),
.photo-popup .swiper-button-next:hover,
.stu_life_swiper-button-prev:hover,
.stu_life_swiper-button-next:hover,
.home-banner-swiper .swiper-button-prev:not(:hover),
.home-banner-swiper .swiper-button-next:hover,
.swiper-button-mb .swiper-button-prev:not(:hover),
.swiper-button-mb .swiper-button-next:hover,
.stu_glance_bannerSwiper .swiper-button-prev:hover,
.stu_glance_bannerSwiper .swiper-button-next:hover {
    animation: moveRight_bg 0.3s linear forwards;
}


.photo-popup .swiper-button-prev:hover,
.photo-popup .swiper-button-next:not(:hover),
.stu_life_swiper-button-prev:not(:hover),
.stu_life_swiper-button-next:not(:hover),
.home-banner-swiper .swiper-button-prev:hover,
.home-banner-swiper .swiper-button-next:not(:hover),
.swiper-button-mb .swiper-button-prev:hover,
.swiper-button-mb .swiper-button-next:not(:hover),
.stu_glance_bannerSwiper .swiper-button-prev,
.stu_glance_bannerSwiper .swiper-button-next:not(:hover) {
    animation: moveLeft_bg 0.3s linear forwards;
}

#go-to-top-button:hover svg {
    animation: movetop 0.3s linear forwards;
}
#go-to-top-button:not(:hover) svg {
    animation: movebottom 0.3s linear forwards;
}

.block_swiper_long_type .swiper-slide:hover .basic-arrow-circle .basic-arrow-icon,
.btn_rotate_45 .basic-button:hover .basic-arrow-circle .basic-arrow-icon {
    animation: moveAndRotateTopRight 0.3s linear forwards;
}

.block_swiper_long_type .swiper-slide:not(:hover) .basic-arrow-circle .basic-arrow-icon,
.btn_rotate_45 .basic-button:not(:hover) .basic-arrow-circle .basic-arrow-icon {
    animation: moveAndRotateTopRight_back 0.3s linear forwards;
}

/* 定義動畫 */
@keyframes moveRight_bg {
    0% {
        background-position: center;
    }
    50% {
        background-position: 100% center;
    }
    52% {
        background-position: -100% center;

    }
    100% {
        background-position: center;
    }
}

@keyframes moveLeft_bg {
    0% {
        background-position: center;
    }
    50% {
        background-position: -100% center;
    }
    52% {
        background-position: 100% center;

    }
    100% {
        background-position: center;
    }
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(100%);
    }
    52% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes moveLeft {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-100%);
    }
    52% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes movetop {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-100%);
    }
    52% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes movebottom {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(100%);
    }
    52% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes moveAndRotateTopRight {
    0% {
        transform: translate(0, 0) rotate(315deg);
    }
    50% {
        transform: translate(100%, -100%) rotate(315deg);
    }
    52% {
        transform: translate(-100%, 100%) rotate(315deg);
    }
    100% {
        transform: translate(0) rotate(315deg);
    }
}

@keyframes moveAndRotateTopRight_back {
    0% {
        transform: translate(0, 0) rotate(315deg);
    }
    50% {
        transform: translate(-100%, 100%) rotate(315deg);
    }
    52% {
        transform: translate(100%, -100%) rotate(315deg);
    }
    100% {
        transform: translate(0) rotate(315deg);
    }
}

/*========================================================================================================================================*/
/*========================================================================================================================================*/
/*========================================================================================================================================*/
/* TEST 用 */
.ssh-search-container {
    max-width: unset;
}
.close-search-btn-flex {
    position: unset;
}
#close-search-btn {
    position: absolute;
    top: 40px;
    right: 20px;
}


.whatson_main .event-item {
    cursor: pointer;
}
.whatson_main .whatson_main_events {
    cursor: pointer;
}
a[href=""], a:not([href]) {
    /*cursor: default !important;*/
}
.main-nav > ul > .has-dropdown > .active-link {
    color: #CB4810 !important;
}
.close-menu-btn svg {
    width: 20px;
    height: 20px;
}
@media screen and (min-height: 800px) {
    .mb_end {
        margin-bottom: 200px;
    }
}
/*========================================================================================================================================*/
/*========================================================================================================================================*/
/*========================================================================================================================================*/

@media screen and (max-height: 800px) {
    .ch-popup-container {
        padding: 40px 20px;
        padding-bottom: 20px;
        overflow-y: auto;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (min-width: 993px) {
    .block_swiper {
        height: fit-content;
        position: sticky;
        top: 80px;
    }
    .home-banner-swiper .bannerSwiper .swiper-slide::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
        z-index: 1;
        pointer-events: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
}

@media (min-width: 1201px) {
    .ssm-menu-header {
        margin-right: -60px;
    }
}

@media (max-width: 1460px) {
    .go-to-top-content::after {
        right: 20px;
    }
    #go-to-top-bar::before {
        left: 20px;
    }
    .sticky-header-content::after {
        right: 20px;
    }
    #sticky-header::before {
        left: 20px;
    }
}

@media (max-width: 1300px) {
    body::before {
        top: 55%;
        width: 70vmin;
        height: 70vmin;
    }
}

@media (max-width: 1439px) {
    /*
    .main-nav > ul {
        flex-wrap: wrap;
        justify-content: end;
    }
    .main-nav ul li {
        flex: 0 0 29%;
    }
    .main-header {
        flex-wrap: nowrap;
    }
    .main-nav a {
        display: block;
        width: max-content;
    }

    .dropdown-menu li a {
        display: inline !important;
    }
    */
    .logo-text .office-name {
        font-size: 14px;
    }
    .logo-text .university-name {
        font-size: 12px;
    }
    .divider {
        margin: 0 12px;
    }
    .dropdown-container {
        top: 100%;
    }
    .main-nav > ul > .has-dropdown > a {
        width: 105px;
        display: flex;
        text-align: center;
        align-items: center;
        font-size: 13px;
        height: 68px;
    }
}

@media (max-width: 1250px) {
    .tags-wrapped {
        margin-top: 73px !important;
    }
    
    .tags-wrapped .tags {
        top: -73px !important;
    }
    .footer-container {
        justify-content: center;
        row-gap: 40px;
        flex-direction: column;
    }
    .footer-left {
        order: 2;
        flex-basis: 100%;
        justify-content: center;
    }
    .footer-right {
        order: 1;
    }
    .footer-middle {
        order: 3;
        margin: 0 auto;
    }
    .whatuneed_main_body {
        grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    }
    .dt-info .copyright {
        display: none;
    }
    .mb-info {
        order: 5;
        display: block;
    }

    .event-item {
        margin-top: 40px;
        position: relative;
    }
    .event-item .tags {
        position: absolute;
        top: -40px;
        left: 0;
    }
    .whatson_main_events {
        max-width: 45%;
    }
    .swiper-slide-text-title {
        font-weight: 800;
        font-size: 26px;
        line-height: 33px;
    }
    .swiper-slide-text-body {
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
    }
    .announcement-item .title {
        font-size: 14px;
    }
    .announcement-item .date {
        font-size: 12px;
    }
    .all-announcements-btn {
        font-size: 14px;
    }
    .all-announcements-btn span {
        margin: 0 auto;
    }
    .banner-flex .col-md-9 {
        flex: 0 0 auto;
        width: 72%;
    }
    .banner-flex .col-md-3 {
        flex: 0 0 auto;
        width: 28%;
    }



    .stu_glance_main_swiper {
        padding: 40px 20px;
    }
    .stu_glance_detail_bar_dividing_vert {
        width: 100%;
        margin: 20px 0;
        border-top: 2px solid #FFFFFF;
    }



    .stu_glance_adus_bar {
        margin-top: 0px;
    }
    .stu_glance_detail_bar_grid {
        max-width: 100%;
    }
    .stu_glance_more_items {
        flex-wrap: wrap;
    }
    .stu_glance_detail_bar {
        padding: 0;
    }
    .stu_glance_detail_bar_grid {
        padding: 0;
    }
    .block_quota_top svg,
    .block_quota_bottom svg {
        width: 13px;
    }
    .stu_glance_detail_bar_dividing_hori {
        margin: 20px 0;
    }
    .stu_glance_more_items_vert {
        flex-direction: row;
    }
    .stu_glance_adus {
        font-size: 70px;
        line-height: 30px;
    }
    .stu_glance_more_items {
        gap: 20px;
    }
    .stu_glance_detail_bar {
        flex-direction: column;
        align-items: center;
    }
    .stu_glance_detail_bar_grid {
        max-width: 600px;
    }
}

@media (max-width: 1200px) {
    .page {
        padding: 7.5px 15px;
    }
    .main-header {
        justify-content: space-between;
    }
    .top-bar {
        font-size: 12px;
    }
    .main-header-container {
        width: 100%;
    }
    .top-bar-container {
        width: 100%;
    }
    .divider {
        margin: 0 10px;
        height: 40px;
    }

    .dropdown-menu a{
        font-size: 16px;
        line-height: 20px;
    }

    .dropdown-submenu a {
        font-size: 14px;
        line-height: 18px;
    }
    .block_desc_title {
        font-size: 26px;
        line-height: 33px;
    }
    .block_desc_body_text_big {
        font-size: 16px;
        line-height: 25px;
    }
    .block_desc_body_text_title_light {
        font-size: 14px;
        line-height: 20px;
    }
    .block_desc_event_text_title {
        font-size: 12px;
    }
    .block_desc_event_text {
        font-size: 15px;
        line-height: 18px;
    }
    .block_desc_body_text_title {
        font-size: 16px;
        line-height: 22px;
    }
    .block_desc_body_text_title_blue {
        font-size: 14px;
        line-height: 17px;
    }
    .block_desc_body_text {
        font-size: 14px;
        line-height: 22px;
    }
    .slide_desc {
        font-size: 16px;
        line-height: 22px;
        margin-top: 10px;
    }
    .block_left_num {
        font-size: 50px;
        line-height: 42px;
    }
    .block_img {
        margin: auto;
        max-width: unset;
    }
    .contact_us_img {
        max-width: 150px;
    }
    .big_banner_title {
        font-size: 31px;
        line-height: 36px;
    }
    /*==========================*/
    #go-to-top-button {
        width: 40px;
        height: 40px;
    }
    .go-to-top-content {
        padding: 15px;
    }
    .go-to-top-content::before {
        left: -19px;
        width: 20px;
        height: 20px;
        background: radial-gradient(circle at top left, transparent 20px, transparent 20px, white 20.5px);
    }
    .go-to-top-content::after {
        top: -19px;
        width: 20px;
        height: 20px;
        background: radial-gradient(circle at top left, transparent 20px, transparent 20px, white 20.5px);
    }
    /*==========================*/
    #sticky-header::before {
        bottom: -19px;
        width: 20px;
        height: 20px;
        background: radial-gradient(circle at bottom right, transparent 20px, transparent 20px, white 20.5px);
    }
    .sticky-header-content {
        padding-left: 15px;
        padding-bottom: 15px;
    }
    .sticky-header-content::before {
        left: -19px;
        width: 20px;
        height: 20px;
        background: radial-gradient(circle at bottom left, transparent 20px, transparent 20px, white 20.5px);
    }
    
    .sticky-header-content::after {
        bottom: -19px;
        width: 20px;
        height: 20px;
        background: radial-gradient(circle at bottom left, transparent 20px, transparent 20px, white 20.5px);
    }
    /*==========================*/
    .page_title {
        font-size: 31px;
        line-height: 36px;
    }
    .service-item .number {
        font-weight: 900;
        font-size: 15px;
        line-height: 24px;
    }
    .service-item a {
        font-weight: 700;
        font-size: 15px;
        line-height: 24px;
    }
    .block_swiper_right_num {
        font-size: 50px;
        line-height: 42px;
        padding-left: 15px;
        padding-bottom: 15px;
    }
    .block_swiper_right_num::before {
        left: -15px; 
        width: 15px;
        height: 15px;
        background: radial-gradient(circle at bottom left, transparent 15px, transparent 15px, #FEEFE8 15.5px);
    }
    
    .block_swiper_right_num::after {
        bottom: -15px;
        width: 15px;
        height: 15px;
        background: radial-gradient(circle at bottom left, transparent 15px, transparent 15px, #FEEFE8 15.5px);
    }
    .block_swiper_left_num {
        font-size: 50px;
        line-height: 42px;
        padding-right: 15px;
        padding-bottom: 15px;
    }
    .block_swiper_left_num::before {
        right: -15px; 
        width: 15px;
        height: 15px;
        background: radial-gradient(circle at bottom right, transparent 15px, transparent 15px, #FEEFE8 15.5px);
    }
    
    .block_swiper_left_num::after {
        bottom: -15px;
        width: 15px;
        height: 15px;
        background: radial-gradient(circle at bottom right, transparent 15px, transparent 15px, #FEEFE8 15.5px);
    }
    #slide-out-menu {
        padding: 0 20px;
    }
    
    #go-to-top-bar {
        padding-top: 15px;
        padding-bottom: 0px;
    }
    #sticky-header {
        padding-top: 15px;
        padding-bottom: 0px;
    }
    .sticky-header-content {
        padding: 15px;
        border-bottom-left-radius: 35px;
    }
    .go-to-top-content {
        padding: 15px;
        border-top-left-radius: 35px;
    }
    
    .go-to-top-content::after {
        right: 15px;
    }
    .go-to-top-content::before {
        bottom: 15px;
    }
    #go-to-top-bar::before {
        left: 15px;
        bottom: 15px;
    }
    .sticky-header-content::after {
        right: 14.5px;
    }
    #sticky-header::before {
        left: 15px;
    }
    .sticky-header-content::before {
        top: 15px;
    }
}

@media (max-width: 1150px) {
    .main-nav {
        display: none;
    }
    .help_dt {
        display: none;
    }
    .header_mb {
        display: block;
    }
    .menu-content {
        width: 100%;
        max-width: 100%;
    }
    body::before {
        width: 60vmin;
        height: 60vmin;
    }
}

@media (max-width: 992px) {
    .mb_end {
        margin-bottom: auto;
    }
    .stu_sto {
        width: 100%;
    }
    .stu_life_header_flex {
        width: 100%;
    }
    .neo_mtb_100 {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .remark_desc {
        margin-bottom: 10px;
    }
    .section_block {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }
    .section_block:has(.GBOYUE_flex) {
        padding: 0px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }
    .other-events {
       /* margin-top: 2rem; */
    }
    .card-image-container {
        width: 40%;
    }
    .whatson_content {
        flex-direction: column;
        gap: 40px;
    }
    .whatson_main_events {
        max-width: 100%;
    }
    .whatson_bannerSwiper {
        max-width: 100%;
    }
    .home-mobile-banner {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }
    .swiper-slide-text {
        display: none;
    }
    .swiper-controls {
        display: none;
    }
    .swiper-slide-text-mb .swiper-slide-text-title {
        font-weight: 800;
        font-size: 26px;
        line-height: 33px;
        margin-bottom: 10px;
    }
    .swiper-slide-text-mb .swiper-slide-text-body {
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
    }
    .swiper-controls-mobile .swiper-button-prev,
    .swiper-controls-mobile .swiper-button-next {
        background-color: #E8652B33;
        color: #CB4810;
    }
    .swiper-controls-mobile .swiper-button-prev {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CB4810' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='19' y1='12' x2='5' y2='12'%3e%3c/line%3e%3cpolyline points='12 5 5 12 12 19'%3e%3c/polyline%3e%3c/svg%3e");
    }
    .swiper-controls-mobile .swiper-button-next {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CB4810' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='5' y1='12' x2='19' y2='12'%3e%3c/line%3e%3cpolyline points='12 5 19 12 12 19'%3e%3c/polyline%3e%3c/svg%3e");
    }
    .swiper-controls-mobile .custom-pagination {
        color: #CB4810;
    }
    .swiper-controls-mobile .pagination-line {
        background-color: rgba(203, 72, 16, 0.2);
    }
    .swiper-controls-mobile .pagination-line-inner {
        background-color: #CB4810;
    }
    .swiper-controls-mobile .swiper-button-prev::after,
    .swiper-controls-mobile .swiper-button-next::after {
        color: #CB4810;
    }
    .swiper-controls-mobile .swiper-button-prev:hover,
    .swiper-controls-mobile .swiper-button-next:hover {
        background-color: #ffaa86;
    }
    .banner-flex .col-md-9 {
        flex: 0 0 auto;
        width: 65%;
    }
    .banner-flex .col-md-3 {
        flex: 0 0 auto;
        width: 35%;
    }
    /*==========================*/
    .btn_230 {
        width: 100%;
    }
    .btn_230 .basic-button {
        width: 100%;
        justify-content: space-between;
    }
    .btn_230 .basic-button .basic-button-text {
        margin: 0 auto;
        padding-left: 38px;
    }
    .btn_290 {
        width: 100%;
    }
    .btn_290 .basic-button {
        width: 100%;
        justify-content: space-between;
    }
    .btn_290 .basic-button .basic-button-text {
        margin: 0 auto;
    }
    .btn_auto {
        width: 100%;
    }
    .btn_auto .basic-button {
        width: 100%;
        justify-content: space-between;
        padding: 12px;
    }
    .btn_auto .basic-button .basic-button-text {
        margin: 0 auto;
        padding-left: 38px;
    }
    .contact_us_desc {
        text-align: center;
    }
    .contact_us_desc .block_desc_title {
        margin: 0 auto;
    }
    .contact_us {
        margin: 0 auto;
    }
    /*==========================*/
    .block_swiper {
        max-width: unset;
        width: 100%;
    }
    .page_path_block {
        padding: 0;
    }
    .page_path {
        padding-left: 0;
        padding-right: 0;
    }
    .bg_light_blue {
        gap: 15px !important;
    }
    /*==========================*/
    .stu_life_long_type {
        width: 100%;
    }
    .stu_life_swiper_long .stu_life_swiper-button-next,
    .stu_life_swiper_long .stu_life_swiper-button-prev {
        display: none;
    }
    .mb-prev,
    .mb-next {
        display: flex;
        cursor: pointer;
    }
    .block_swiper_long_type .stu_life_swiper-button-next,
    .block_swiper_long_type .stu_life_swiper-button-prev {
        width: 40px;
        height: 40px;
        background-color: #FFFFFF;
        background-image: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.8008 6.54883L8.58203 10.7676L7.9375 11.4414L6.58984 10.0938L7.26367 9.44922L9.87109 6.8125H1.375H0.4375V4.9375H1.375H9.87109L7.26367 2.33008L6.58984 1.65625L7.9375 0.337891L8.58203 1.01172L12.8008 5.23047L13.4746 5.875L12.8008 6.54883Z' fill='%23CB4810'/%3E%3C/svg%3E");
    }
    /*==========================*/
    .sport_well_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sport_well_block {
        grid-column: span 1;
    }
    
    .sport_well_block:last-child {
        grid-column: span 2;
    }

    .sport_well_grid_4fr .sport_well_block:last-child {
        grid-column: span 1;
    }
    .upcoming_event_block .block_swiper {
        width: 100%;
        max-width: unset;
    }
    .upcoming_event_block .block_desc {
        width: 100%;
    }
    .event_detail_left {
        width: 65%;
    }
    .event_detail_right {
        width: 35%;
    }
    .feature-list__item {
        font-size: 14px;
    }
    .ch-popup-container {
        padding: 40px 20px;
        padding-bottom: 20px;
        overflow-y: auto;
        margin-left: 20px;
        margin-right: 20px;
    }
    .ch-popup-title {
        font-size: 26px;
    }
    .ch-popup-list {
        font-size: 16px;
    }
    .ch-popup-close-btn {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    .popup-close-btn-area {
        height: 60px;
    }
    .video-popup-container {
        margin: auto;
        padding: 0 20px;
    }
    .page_path_name {
        font-size: 12px;
    }
    .page_path {
        gap: 8px;
    }
    .mega-menu-lv1 {
        font-size: 15px;
        line-height: 18px;
    }
    .mega-menu-lv2 {
        font-size: 12px;
        line-height: 16px;
    }
    .ora_btn {
        width: 40px;
        height: 40px;
    }
    .two_over_people {
        gap: 5px;
    }
    .two_over_desc_block {
        gap: 10px;
    }
    .two_over_people_left {
        gap: 10px;
    }
    .two_over_people_left_img {
        max-width: 60px;
    }
    .ssh-search-input {
        font-size: 26px;
    }
    body::before {
        display: none;
    }
    .mt-5 {
        margin-top: 0rem !important;
    }
    .swiper-slide-next .slide_desc {
        width: 70%;
    }
    .mb-5 {
        margin-bottom: 0 !important;
    }
    .neo_mb_80 {
        margin-bottom: 10px;
    }
    .search_list_flex {
        margin-top: 0px;
    }
    /*
    .bg_img_top_right_ora,
    .bg_img_top_right_blue,
    .bg_img_top_right_ora_dark,
    .bg_img_top_left_ora,
    .bg_img_top_left_blue,
    .bg_img_top_left_ora_dark,
    .bg_img_bottom_right_blue,
    .bg_img_bottom_right_ora_dark {
        background-size: 700px;
    }
    .bg_img_tlbr_blue,
    .bg_img_tlbr_ora_dark {
        background-position: left -400px top -430px, right -550px bottom -380px;
        background-size: 700px, 700px;
    }
    */
    .neo_mt_5 {
        margin-top: 10px;
    }
    .neo_mb_4 {
        margin-bottom: 10px;
    }
    #no-results-message {
        margin-top: 18px;
    }
    .sport_well_grid {
        gap: 15px;
    }
    .basic-arrow-icon {
        width: 9px;
        height: 9px;
    }
    .cta-button {
        padding: 12px;
    }
    .basic-arrow-circle {
        width: 20px;
        height: 20px;
    }
    .page-link, .next-link, .prev-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .next-link svg, .prev-link svg {
        width: 11px;
        height: 14px;
    }



    .bg_img_top_left_ora {
        background-image: url("../img/ex-bg_top_left_ora.svg");
    }
    
    .bg_img_top_left_blue,
    .bg_img_top_left_ora_dark {
        background-image: url("../img/ex-bg_top_left_blue.svg");
    }
    
    .bg_img_top_right_ora {
        background-image: url("../img/ex-bg_top_right_ora.svg");
    }
    
    .bg_img_top_right_blue {
        background-image: url("../img/ex-bg_top_right_blue.svg");
    }
    
    .bg_img_top_right_ora_dark {
        background-image: url("../img/ex-bg_top_right_ora_dark.svg");
    }
    
    .bg_img_tlbr_blue,
    .bg_img_tlbr_ora_dark {
        background-image: url("../img/ex-cu_tl.svg"), url("../img/ex-cu_br.svg");
    }
    
    .bg_img_top_right_ora_mid {
        background-image: url("../img/ex-bg_top_right_ora_mid.svg");
    }
    
    .bg_img_top_right_blue_mid {
        background-image: url("../img/ex-bg_top_right_blue_mid.svg");
    }
    
    .bg_img_top_right_ora_small {
        background-image: url("../img/ex-bg_top_right_ora_small.svg");
    }
    
    .bg_img_top_right_ora_dark_small {
        background-image: url("../img/ex-bg_top_right_ora_dark_small.svg");
    }
    .GBOYUE_flex .neo_mt_4,
    .GBOYUE_flex .neo_mt_5 {
        margin-top: 20px;
    }
    
    .GBOYUE_flex {
        margin-bottom: 15px;
    }

    .cs-accordion-content-inner:has(.cs-table-wrapper) {
        overflow-x: auto;
    }

    .block_quota_top svg, .block_quota_bottom svg {
        height: 21px;
        width: 13px;
    }

    .two_over_block .event-item-info-content {
        line-height: 26px;
    }

    .two_over_people .ora_btn svg {
        width: 15px;
        height: 15px;
    }

    .custom-dropdown__icon-wrapper {
        width: 20px;
        height: 20px;
    }

    .event-item {
        gap: 15px;
    }

    .other-events {
        gap: 20px;
    }

    .big_banner {
        aspect-ratio: 1.815 / 1;
    }
    /*992 end*/
}


@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-header {
        padding-bottom: 10px;
    }
    .event-card {
        flex-direction: column;
        min-height: auto;
    }
    .card-image-container {
        display: none;
    }
    .card-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .featured-event-info h4 {
        font-size: 1.5rem;
    }
    .logo-text .university-name {
        font-size: 12px;
        line-height: 14px;
    }
    .logo-text .office-name {
        font-size: 13px;
        line-height: 13px;
        width: 75px;
    }
    .logo-svg {
        width: 165px;
        height: 40px;
    }
    
    footer .logo-svg {
        width: 25px;
    }

    .help-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    .top-bar-right span {
        display: none;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    .footer-left {
        flex-direction: column;
        gap: 20px;
    }
    .footer-links ul {
        justify-content: center;
    }
    .footer-right {
        flex-direction: column;
    }
    .banner-flex .col-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .banner-flex {
        flex-wrap: wrap;
    }
    .announcements-card {
        max-width: unset;
        width: 100%;
    }
    .mini_banner {
        max-width: unset;
        width: 100%;
    }
    .mini_bannerSwiper {
        max-width: unset;
    }
    .whatson_main {
        padding: 40px 20px;
    }
    .whatson_content {
        flex-wrap: wrap;
    }
    .whatson_main_events {
        max-width: 100%;
    }


    .stu_glance_main_swiper {
        padding: 40px 20px;
    }
    .stu_glance_detail_bar_dividing_vert {
        width: 100%;
        margin: 20px 0;
    }
    .stu_glance_top_bar_title {
        max-width: 200px;
        font-size: 26px;
        line-height: 28px;
    }
    .stu_glance_adus {
        font-size: 38px;
        line-height: 24px;
    }
    .block_num {
        font-size: 38px;
        line-height: 100%;
    }
    .block_desc {
        font-size: 16px;
        line-height: 20px;
    }
    .stu_glance_detail_bar_grid_desc {
        font-size: 14px;
        line-height: 18px;
    }
    .stu_glance_bannerSwiper .swiper-button-prev,
    .stu_glance_bannerSwiper .swiper-button-next {
        width: 40px;
        height: 40px;
        border: 2px solid #ffffff;
        background-size: 14px;
    }
    .stu_glance_bannerSwiper .swiper-button-prev::after,
    .stu_glance_bannerSwiper .swiper-button-next::after {
        font-size: 16px;
        height: 55%;
    }
    .stu_glance_adus_bar {
        margin-top: 0px;
        margin-bottom: 17px;
    }
    .stu_glance_detail_bar_grid {
        max-width: 100%;
    }
    .stu_glance_more_items {
        flex-wrap: wrap;
    }
    .stu_glance_bannerSwiper .stu_glance_main_swiper_blue_type .swiper-button-prev,
    .stu_glance_bannerSwiper .stu_glance_main_swiper_blue_type .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    .stu_glance_bannerSwiper .stu_glance_main_swiper_blue_type .swiper-button-prev::after,
    .stu_glance_bannerSwiper .stu_glance_main_swiper_blue_type .swiper-button-next::after {
        font-size: 16px;
        height: 55%;
    }
    .stu_glance_detail_bar {
        padding: 0;
    }
    .stu_glance_detail_bar_grid {
        padding: 0;
    }
    .block_quota_top svg,
    .block_quota_bottom svg {
        width: 13px;
    }
    .stu_glance_detail_bar_dividing_hori {
        margin: 20px 0;
    }
    .stu_glance_more_items_vert {
        flex-direction: row;
    }
    .block_title {
        font-size: 20px;
        line-height: 28px;
    }
    .block_content {
        font-size: 16px;
        line-height: 25px;
    }
    .stu_glance_more_items {
        gap: 20px;
    }
    .stu_glance_detail_bar {
        flex-direction: column;
        align-items: center;
    }

    .whatuneed_main_body {
        grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    }
    .ap_main_body {
        grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
        gap: 15px;
    }
    .whatuneed_block_desc {
        font-size: 16px;
        line-height: 20px;
        width: 120%;
    }
    .cs-accordion-title,
    .ap_block_desc {
        font-size: 16px;
        line-height: 20px;
    }
    .whatuneed_block_content {
        gap: 15px;
    }
    .whatuneed_block {
        padding-bottom: 30px;
    }
    .whatson_header_button {
        display: none;
    }
    .mini_banner_flex_title {
        font-size: 12px;
    }
    .whatson_header_title {
        font-size: 26px;
        line-height: 28px;
    }
    .whatson_tag {
        font-size: 11px;
    }
    .whatson_main_events_detail_title {
        font-size: 16px;
        line-height: 20px;
    }
    .whatson_main_events_detail_content {
        font-size: 14px;
        line-height: 22px;
        margin-top: -5px;
    }
    .event-item-info-content {
        font-size: 16px;
        line-height: 20px;
    }
    .mb_btn {
        display: block;
    }
    .whatson_header_button_mb { 
        display: flex;
        justify-content: center;
    }
    .whatson_header_button_mb .cta-button {
        width: 100%;
        position: relative;
    }
    .whatson_header_button_mb span {
        margin: 0 auto;
    }
    .whatson_header_button_mb .arrow-circle {
        margin: 0;
        width: 20px;
        height: 20px;
    }
    .whatson_header_button_mb .arrow-icon {
        width: 10px;
        height: 17px;
        stroke: #CB4810; 
        stroke-width: 2.5px;
        background: #ffffff;
        align-self: center;
    }
    .event-item-img {
        max-width: 100px;
    }
    .ue_other-events .event-item-img {
        max-width: 100px;
    }
    .rcs-button-group {
        display: none;
    }
    .rcs-dropdown-container {
        display: block;
    }
    .whatson_main {
        gap: 25px;
    }
    .event_detail {
        flex-direction: column-reverse;
    }
    .event_detail_left {
        width: 100%;
    }
    .event_detail_right {
        width: 100%;
    }
    .custom-dropdown__list {
        font-size: 16px;
        padding: 20px;
        width: fit-content;
    }
    .custom-dropdown__button {
        font-size: 14px;
    }
    .menu-items a {
        font-size: 15px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .video_grid .play-button-circle {
        width: 40px;
        height: 40px;
    }
    
    .video_grid .play-button-circle svg {
        width: 30%;
    }

    .neo_mt_80 {
        margin-top: 10px;
    }
    .whatuneed_main_title {
        font-size: 28px;
        line-height: 28px;
        text-align: left;
    }
    .whatuneed_main {
        gap: 30px;
    }
    .whatuneed_main_body {
        gap: 15px;
    }
    .whatuneed_block img {
        max-width: 90px;
    }
    .page_path {
        flex-wrap: wrap;
    }
    .ssh-tags-container {
        flex-direction: column;
    }
    .ssh-tag-btn {
        width: fit-content;
    }

    body.menu-wrapper + #go-to-top-bar {

    }
    #go-to-top-bar.is-active {
        bottom: 71px;
    }
    .menu-wrapper {
        padding: 0;
    }
    .menu-container {
        border-radius: unset;
        padding-top: 1px;
        box-shadow: 0px -2px 12px 0px #0000001A;
    }
    .cs-active-dot {
        width: 14px;
        height: 14px;
    }
    .cs-overview {
        font-size: 15px;
        line-height: 18px;
    }
    .play-button-circle {
        width: 40px;
        height: 40px;
    }
    .dropdown-container,
    .bannerSwiper,
    .swiper-slide img,
    .announcements-card,
    .announcements-card::before,
    .whatson_tag,
    .mini_bannerSwiper,
    .help-button,
    .whatson_main,
    .whatson_bannerSwiper,
    .stu_glance_bannerSwiper,
    .stu_glance_main_swiper,
    .whatuneed_block,
    .section_block,
    .block_swiper_long_type img,
    .block_img img,
    .block_video_thumbnail,
    .block_video_thumbnail img,
    .big_banner,
    .big_banner img,
    .video-container,
    #node_video,
    .node_video,
    .ap_block,
    .ap_block img,
    .ap_block_content_img,
    .custom-dropdown__menu,
    .event_detail_left_block img,
    .event_detail_right_block,
    .collage-item {
        border-radius: 20px;
    }
    .hamburger-button {
        width: 40px;
        height: 40px;
    }
    .services-grid {
        gap: 15px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .block_swiper_long_type .basic-arrow-circle {
        top: 10px;
        right: 10px;
        width: 24px;
        height: 24px;
    }
    .block_swiper_long_type .basic-arrow-icon {
        width: 9px;
    }
    .whatson_main_events {
        gap: 20px;
    }
    .white_button .basic-arrow-icon,
    .ora_button .basic-arrow-icon,
    .white_ora_button .basic-arrow-icon{
        width: 10px;
        height: 10px;
    }
    .calendar-wrapper {
        transform: scale(0.8);
        transform-origin: top right;
    }
    .announcements-card::before {
        height: unset;
    }

    .announcements-card .announcement-list {
        max-height: unset !important;
        overflow-y: unset;
    }
    /*768 END*/
}
@media (max-width: 1024px) {

}


@media (max-width: 330px) {
    .page_path_name {
        font-size: 8px;
    }
}

@media (max-width: 300px) {
    .ap_main_body {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
}

@media (max-width: 400px) {
    .logo-text .university-name {
        font-size: 10px;
        line-height: 12px;
    }
    .block_swiper_long_type img {
        max-width: 180px;
    }
    .whatuneed_block {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 45px;
    }
    .whatuneed_go_btn {
        width: 24px;
        height: 24px;
        top: 10px;
        right: 10px;
    }

}


@media (max-width: 1250px) {
    .sport_well_grid_6fr {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (max-width: 992px) {
    .sport_well_grid_6fr {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .sport_well_grid_6fr {
        grid-template-columns: repeat(3, 1fr);
    }
    .sport_well_grid_6fr .whatuneed_block {
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 25px;
    }
    .sport_well_grid_6fr .whatuneed_block img {
        max-width: 50px;
    }
    .sport_well_grid_6fr .whatuneed_go_btn {
        width: 18px;
        height: 18px;
        top: 10px;
        right: 10px;
    }
    .sport_well_grid_6fr .whatuneed_go_btn_arrow svg {
        width: 10px;
        height: 15px;
    }
}
@media (max-width: 300px) {
    .sport_well_grid_6fr {
        grid-template-columns: repeat(3, 1fr);
    }
    .sport_well_grid_6fr .whatuneed_block {
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 25px;
    }
    .sport_well_grid_6fr .whatuneed_block img {
        max-width: 40px;
    }
    .block_desc_body_text_title_blue {
        font-size: 12px;
        line-height: 15px;
    }
}