main {
    /* width: 100vw; */
    /* min-height: 400vh; */
    background-image:
        url('../images/common/layer_main_background_v2.png'),
        url('../images/common/layer_main_background.png');

    background-position:
        center center,
        center center;
}

/* --- Reset & Variables --- */
:root {
    --color-gold: #c9b98d;
    --color-gold-light: #AFA889;
    --color-dark: #414141;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-bg-light: #fffef8;
    --color-green: #224D38;
    --color-green-light: #345C32;
    --color-footer-bg: #0c3c29;
    --color-text-intro: #68614b;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --max-width: 1920px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-black);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Selection Color */
::selection {
    background: var(--color-gold);
    color: var(--color-white);
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    /* px-8 */
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.object-cover {
    object-fit: cover;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    width: 100%;
}

/* Typography */
h2.section-title {
    font-size: 40px;
    color: var(--color-dark);
    line-height: 1;
    font-family: Copperplate-Gothic;
    font-weight: 500;
}

/* --- Background Grid --- */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
}

/* --- Components --- */

/* Header */
header {
    padding: 5%;
    background: white;
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-logo {
    max-width: 40px;
}

.search-icon {
    max-width: 16px;
}

.mainContainer .nav-links {
    display: none;
}

.mainContainer .nav-link {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-black);
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
    font-family: HelveticaNeue;
    font-weight: 500;
    padding-bottom: 7px;
}

.mainContainer.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 5px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.mainContainer .nav-link:hover {
    color: var(--color-gold);
}

.mainContainer .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.mainContainer .nav-link.active {
    border-bottom: 5px solid #C9B98D;
}

.search-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--color-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #1a3a2b;
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1920/1144;
    max-height: 90vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10%;
    pointer-events: none;
}

.hero-text-img {
    width: 90%;
    max-width: 1800px;
    font-size: clamp(2rem, 5vw, 6rem);
    font-weight: 900;
    text-align: center;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

/* Intro */
.intro {
    padding: 3% 5%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-divider {
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    margin: 48px 0;
    /* mb-12 */
}

.intro-text {
    color: var(--color-text-intro);
    font-family: var(--font-inter);
    font-style: italic;
}

.intro-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-desc {
    font-size: 1.25rem;
}

/* Share Our Pride */
.share-pride {
    padding-top: 5%;
    /* py-24 */
    padding-bottom: 5%;
}

.share-text {
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
    font-family: 'Inter';
    font-weight: 400;
}

.step-title .section-title {
    position: relative;
    padding-left: 1.9rem;
    display: inline-block;
    font-family: Copperplate-Gothic;
    font-weight: 500;
}

.step-title .section-title::before {
    content: "01";
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #AFA889;
    font-style: italic;
	display: none;
}

.step-title.step-02 .section-title::before {
    content: "02";
}

.step-title.step-03 .section-title::before {
    content: "03";
    color: white;
}

.step-title.step-04 .section-title::before {
    content: "04";
}


/* Video Clips */
/* .video-section {
    padding-top: 96px;
    padding-bottom: 96px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(201,185,141,0.1));
}

.video-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 100%;
}

.video-thumb-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #eee;
}
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-3-2 { aspect-ratio: 3/2; }

.video-thumb-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.video-card:hover .video-thumb-wrapper img { transform: scale(1.05); }

.play-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.video-card:hover .play-overlay { background: rgba(0,0,0,0.1); }

.play-btn {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.video-card:hover .play-btn { opacity: 1; transform: scale(1); }

.video-title {
    margin-top: 1rem;
    font-size: 1.125rem; 
    font-weight: 500;
    color: black;
    transition: color 0.3s;
}
.video-card:hover .video-title { color: var(--color-gold); } */

.cms-video video {
    width: 100%;
}

/* Photo Gallery */
.gallery-section {
    padding-top: 96px;
    padding-bottom: 96px;
    background: var(--color-bg-light);
}

.gallery-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

.gallery-nav-btn:hover {
    background: var(--color-dark);
    color: white;
}

.carousel-container {
    overflow: hidden;
    margin-top: 3rem;
    margin-left: -1rem;
    /* Negative margin to offset padding */
}

.carousel-track {
    display: flex;
    gap: 0;
    /* Handled by padding in items */
}

.carousel-item {
    flex: 0 0 80%;
    padding-left: 1rem;
    min-width: 0;
}

/* Footer */
footer {
    background: var(--color-footer-bg);
    color: white;
    padding: 15% 0;
    display: none;
}

.mainContainer footer {
    display: block;
}


.footer-link {
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-family: HelveticaNeue;
    font-weight: 500;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-left {
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
    gap: 4rem;
    /* max-width: 400px; */
}

.footer-HKU-logo {
    width: 100%;
    max-width: 45%;
    object-fit: contain;
}

.footer-center {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.footer-center::after {
    content: '';
    position: absolute;
    left: -40px;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: #AFA889;
}



.footer-right {
    flex-shrink: 0;
    padding: 0.5rem;
    border-radius: 0.5rem;
    align-self: end;
    display: none;
}

.footer-HKIRC-logo img {
    width: 150px;
    height: 150px;
    display: block;
    border-radius: 4px;
}

.copyright-text {
    padding-top: 3rem;
}

.copyright-text p {
    font-family: var(--font-inter);
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
    font-family: Inter;
    font-weight: 400;
}


/* Modal */
/* .modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal.active { opacity: 1; pointer-events: all; }
.modal-content {
    width: 90%; max-width: 1280px; aspect-ratio: 16/9;
    background: black; position: relative;
} */
/* .close-modal {
    position: absolute; top: -50px; right: 0;
    color: white; font-size: 2rem; cursor: pointer;
} */

.menu-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    z-index: 1000;
}

.menu-toggle {
    display: none;
}

/* 兩條橫線 */
.menu-btn .line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* 上條線 */
.menu-btn .line1 {
    top: 40%;
    /* 距離 button 頂部 30% */
    transform: translateY(-50%);
}

/* 下條線 */
.menu-btn .line2 {
    bottom: 40%;
    /* 距離 button 底部 30% */
    transform: translateY(50%);
}

/* 點擊後變 X */
.menu-toggle:checked+.menu-btn .line1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle:checked+.menu-btn .line2 {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* 全屏 overlay menu */
.full-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0C3C29;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 999;
    padding-left: 5%;
    padding-right: 5%;
}

.menu-toggle:checked~.full-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.full-menu {
    text-align: left;
    color: white;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
}

.menu-items li {
    margin: 20px 0;
}

.menu-items a {
    color: white;
    font-size: 28px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.menu-items a:hover {
    opacity: 0.7;
}

.font-size-controls {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 2px;
    justify-content: flex-start;
}

.font-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 2px 0px;
    font-size: 1.4rem;
    min-width: 40px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
    /* 拎走點擊時的藍色/灰色 outline */
    box-shadow: none;
    /* 拎走任何陰影 */
    -webkit-appearance: none;
    /* iOS Safari 預設 button 樣式 */
    -moz-appearance: none;
    /* Firefox */
    appearance: none;
    /* 標準 */

    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* hover 效果：邊框變實 + 輕微放大 */
.font-btn:hover {
    border-color: white;
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    /* 可選：加少少光暈 */
}

/* 當前選中（active）狀態：填滿白色背景 + 綠字 */
.font-btn.active {
    background: white;
    color: var(--color-green);
    border-color: white;
    font-weight: bold;
    transform: scale(1.1);
}

/* 每個按鈕文字大小反映實際效果（保留，視覺更直覺） */
.font-btn[data-size="1.5"] {
    font-size: 2rem;
}

.font-btn[data-size="1.2"] {
    font-size: 1.7rem;
}

.font-btn[data-size="1"] {
    font-size: 1.4rem;
}

.font-btn[data-size="0.9"] {
    font-size: 1.2rem;
}

.font-btn[data-size="0.8"] {
    font-size: 1rem;
}

.cms-container-inside {
    display: flex;
}

.video-clips-outer {
    /* display: none; */
}

.video-clips-outer .cms-container-inside {
    gap: 1.5rem;
}

.video-clips-row .cms-container-inside {
    gap: 1.5rem;
}

.video-clips-items .block-content {
    font-weight: 22px;
    font-weight: 500;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.video-clips-items.main-clips .block-content {
    font-size: 40px;
}

.container.video-bg-v1 {
    position: relative;
    padding-top: 7%;
    padding-bottom: 7%;
}

.video-bg-v1>.cms-container-inside {
    position: relative;
    z-index: 1;
}

#bg-video {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    z-index: 0;
    object-fit: cover;
    background: transparent;
    display: none;
}

.container.home-photo-gallery,
.container.supplement-div,
.container.home-media-gallery {
    padding-top: 7%;
    padding-bottom: 7%;
}

.container.home-photo-gallery.gallery-page-ver{
    padding-top: 0%;
}

.container.home-photo-gallery {
    background: #0C3C29;
    margin-bottom: 5%;
}

.home-photo-gallery .step-title .section-title {
    color: white;
}

.container.home-photo-gallery.bg-v2 ,
.award-div-items.bg-v2{
    /* background-color: #C9B98D33; */
    box-shadow: 0 0 0 100vmax #C9B98D33;
    clip-path: inset(0 -100vmax);
    background-color: #C9B98D33;
}


/* gallery-v1 效果：左右只露出一部分 + 淡 + 細 */

.gallery-v1-slider {
    position: relative;
    /* 確保 arrow 係相對此 container 定位 */
    padding: 20px 0 60px 0;
}

.gallery-v1-slider .swiper {
    overflow: visible !important;
    /* 關鍵！允許左右 partial slide 露出去 */
}

.gallery-v1-slider .swiper-slide {
    transition: all 0.4s ease;
    opacity: 0.5;
    transform: scale(0.85);
    /* 左右張細少少 */
}

.gallery-v1-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    /* 中間張正常大小 */
    z-index: 10;
    /* 可選：確保中間張在上層 */
}

/* 可選：加陰影畀中間張更突出 */
.gallery-v1-slider .swiper-slide-active .cms-block-item {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* .gallery-v1-slider .gallery-v1-navigation {
    position: absolute;
    top: 0%;         
    right: 20px;            
    z-index: 10;
    display: flex;
    gap: 10px;           
} */

/* gallery-v1 arrows 自訂位置：右上角並排 */
/* .gallery-v1-slider .swiper-button-prev,
.gallery-v1-slider .swiper-button-next {
    position: absolute;
    top: 50%;             
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    z-index: 20;
} */
/* 
.gallery-v1-slider .swiper-button-prev {
    left: 30%;
    right: auto; 
    transform: none;
}

.gallery-v1-slider .swiper-button-next {
    right: 30%;
    left: auto;
    transform: none;
} */

/* 可選：箭咀顏色、大小 */
/* .gallery-v1-slider .swiper-button-prev,
.gallery-v1-slider .swiper-button-next {
    --swiper-navigation-color: #fff; 
    --swiper-navigation-size: 24px;  
} */


.gallery-v1-slider .gallery-v1-navigation {
    position: absolute;
    left: 50%;
    /* 從左邊 50% 開始 */
    bottom: -70px;
    /* 距離 slider 底部，向下移（負數係向外移） */
    transform: translateX(-50%);
    /* 向左移自身寬度嘅 50%，達到完美置中 */
    display: flex;
    gap: 16px;
    /* 兩個箭咀之間距離，可自行調 */
    z-index: 30;
    pointer-events: none;
    /* 底層可點 */
}

.gallery-v1-slider .gallery-v1-navigation>div {
    pointer-events: all;
    /* 箭咀本身可點擊 */
}

/* 強制清除 Swiper 預設 left/right */
.gallery-v1-slider .swiper-button-prev,
.gallery-v1-slider .swiper-button-next {
    position: static !important;
    /* 取消 absolute，靠 flex 排列 */
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 0 !important;
    transform: none !important;
}

/* 自訂箭咀樣式 */
.gallery-v1-slider .swiper-button-prev,
.gallery-v1-slider .swiper-button-next {
    width: 50px;
    height: 50px;
    /* background: rgba(0,0,0,0.6); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-v1-slider .swiper-button-prev img,
.gallery-v1-slider .swiper-button-next img {
    filter: brightness(0) invert(1);
}

/* Gallery V5 Grid (Desktop) */
.gallery-v5-grid .custom-grid-slide .gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gallery-v5-grid .custom-grid-slide:first-child .gallery-grid-container .cms-block-item:first-child {
    grid-column: 1 / -1;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
}

.gallery-v5-grid .custom-grid-slide .gallery-grid-container .cms-block-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-v5-grid .custom-grid-slide .gallery-grid-container .block-title{
    margin-top: 1.3rem;
    font-weight: 500;
    font-size: 1.1rem;
    font-family: HelveticaNeue;
    font-weight: 500;
}

.gallery-v5-grid .custom-grid-slide:first-child .gallery-grid-container .cms-block-item:first-child .block-title{
    font-size: 1.7rem;
}

.gallery-page-ver .media-archives-page-title{
	margin-top: 20px;
}

/* 
.gallery-v1-slider .swiper-button-prev:hover,
.gallery-v1-slider .swiper-button-next:hover {
    background: rgba(0,0,0,0.9);
} */

.my-generated-swiper {
    padding: 20px 0 10px 0;
}

.my-generated-swiper .swiper {
    padding-bottom: 20px;
}

.my-generated-swiper .swiper-slide {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: auto;
}

.my-generated-swiper .slide-image {
    width: 100%;
    /* height: 280px; */
    object-fit: cover;
}

.my-generated-swiper .slide-text {
    padding: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #333;
}

.custom-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.custom-navigation button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.custom-navigation button:hover {
    opacity: 1;
}

.custom-navigation button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* 限死 gallery 寬度 */
.home-photo-gallery {
    overflow-x: hidden;
}

/* Swiper 本體一定要 hidden */
.home-photo-gallery .swiper {
    width: 100%;
    overflow: hidden;
}

/* 防止 slide 撐爆 */
.home-photo-gallery .swiper-slide {
    box-sizing: border-box;
}

/* 圖片唔好撐寬 */
.home-photo-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.swiper {
    overflow-anchor: none;
}

/* award page */

.page-banner {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: var(--color-green);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.page-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.banner-title {
    position: relative;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 0.9;
    z-index: 10;
    font-family: Copperplate-Gothic;
    font-weight: 500;
}

.invitation-section {
    margin-bottom: 10%;
}

.invitation-img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Programme Section */
.programme-section {
    padding-bottom: 120px;
    position: relative;
}

.programme-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 5%;
    text-align: left;
}

.programme-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 5%;
}

.schedule-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    order: 2;
    font-family: HelveticaNeue;
}

.schedule-item {
    font-size: 1.5rem;
    color: var(--color-black);
    line-height: 1.4;
}

.schedule-item-title {
    font-weight: 500;
    /* Regular per design */
    margin-bottom: 1rem;
    font-size: 1.875rem;
    color: var(--color-text-intro);
    /* 30px */
}

/* Awards Sub-list */
.awards-list {
    list-style: none;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 24px;
    margin-bottom: 10%;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-black);
}

.award-item::before {
    content: '';
    
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    
    background-image: url('../images/common/icon_award.png'); 
    background-size: contain;      
    background-repeat: no-repeat;  
    background-position: center;   
}

/* .award-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--color-gold);
} */

/* Download Button */
.download-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-gold-light);
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.download-wrapper:hover {
    opacity: 0.8;
}

.download-icon-circle {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background-color: var(--color-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.download-icon-circle img {
    width: 24px;
    height: 24px;
}

/* --- Content Layout --- */
.recipient-page {
    padding-bottom: 120px;
}

/* Hero Image */
.hero-image-wrapper {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    max-height: 800px;
    margin-bottom: 64px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation */
.back-nav {
    margin-bottom: 48px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #68614B;
    font-family: var(--font-inter);
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Inter';
    font-weight: 400;
}

.back-link:hover {
    color: var(--color-gold);
}

.back-arrow {
    font-family: monospace;
    transform: rotate(-90deg);
    display: inline-block;
    font-size: 1.2em;
}

/* Header Info */
.recipient-header {
    margin-bottom: 80px;

}

.award-category {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-gold-light);
    margin-bottom: 5%;
    text-align: center;
    position: relative;
    padding: 60px 40px 20px 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Copperplate-Gothic;
    font-weight: 500;
}

.award-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 65px;
    /* 調高度 */
    background: url('../images/common/award_text_top_bar.png') center / 100% 100% no-repeat;
    background-size: contain;
    /* 或用 cover / 100% auto 視乎圖形 */
    pointer-events: none;
}

/* 下面條 */
.award-category::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: url('../images/common/award_text_bottom_bar.png') center / 100% 100% no-repeat;
    background-size: contain;
    pointer-events: none;
}


.recipient-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: Copperplate-Gothic;
    font-weight: 500;
}

.recipient-faculty {
    font-family: var(--font-inter);
    font-size: 1.5rem;
    /* ~24px */
    font-weight: 400;
    color: var(--color-dark);
    font-family: Copperplate-Gothic;
    font-weight: 500;
}

/* Quote Section */
.quote-section {
    margin: 0 0 80px 0;
}

.quote-row {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
    height: 100px;
    /* Fixed height to ensure stability */
}

.quote-line {
    height: 7px;
    background-color: var(--color-gold);
}

.quote-line.short {
    width: 80px;
    flex-shrink: 0;
}

.quote-line.long {
    flex-grow: 1;
}

.quote-symbol {
    color: var(--color-gold);
    font-size: 8rem;
    /* Slightly larger for impact */
    font-family: HelveticaNeue;
    font-weight: 700;
    line-height: 0;
    /* Removes text block spacing issues */
    display: flex;
    align-items: center;
    height: 0;
    /* Minimal height wrapper */
    transform: translateY(20px);
    /* Push the high-sitting quote down to visual center */
}

/* Remove previous specific row transforms, use consistent centering */
.quote-row.top {
    margin-bottom: 32px;
}

.quote-row.bottom {
    margin-top: 32px;
}

.quote-text {
    font-family: var(--font-inter);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-black);
    text-align: justify;
}

/* Body Content */
.body-content {
    margin: 0 auto 80px 0;
    /* Left aligned matching header */
    font-family: var(--font-inter);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black);
}

.body-content p {
    margin-bottom: 1.5rem;
}

.body-content p.source {
    font-size: 0.875rem;
    color: var(--color-text-meta);
    margin-top: -1rem;
    margin-bottom: 2rem;
}

/* Media Placeholder */
.media-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 80px;
}

/* --- Page Title --- */
.award-recipients-page-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 40px;
    color: var(--color-dark);
    text-align: left;
    margin-bottom: 40px;
    line-height: 1.1;
}

.award-recipients-page-title .block-content {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    position: relative;
    /* padding-left: 1.7rem; */
    display: inline-block;
    font-family: Copperplate-Gothic;
    font-weight: 500;
}

.award-recipients-page-title .block-content::before {
    content: "01";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-weight: bold;
    color: #AFA889;
    font-style: italic;
}

/* --- Awards List --- */
.awards-container>.cms-container-inside>.cms-container-item {
    display: flex;
    flex-direction: column;
    /* gap: 60px; */
    padding-bottom: 100px;
}

/* Award Card - 背景圖直接設在 card 上 */
.award-card {
    /* 
    padding: 60px 40px; 
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('https://hko.infinmedia.net/hku_event_2025/application/views/client/assets/images/common/award-recipients_frame.png'); */
    /* width: 100%;
    position: relative; */
    /* border: 5px #764e1c solid; */
    text-align: center;
}

/* .award-card.card-v2{
    background-image: url('https://hko.infinmedia.net/hku_event_2025/application/views/client/assets/images/common/award-recipients_frame_v3.png');
} */

/* .award-card > .cms-block-inside > .cms-block-item {
    padding: 5% 0;
}

.award-card.card-v2 > .cms-container-inside {
    padding: 5% 0;
} */

.award-left-div {
    position: relative;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    display: none;
}

.award-left-div .cms-block .cms-block-inside {
    position: relative;
}

.award-left-div .text-item {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #68614B;
}

.award-right-div {
    width: 100% !important;
}

.award-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 20px;
    color: #68614b;
    line-height: 1.3;
    max-width: 800px;
}

.award-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-black);
}

.recipient-list {
    font-family: var(--font-main);
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-black);
    max-width: 900px;
    width: 100%;
}

.recipient-item {
    margin-bottom: 10px;
}

.award-recipient-name {
    font-weight: 700;
}

.recipient-dept {
    font-family: var(--font-inter);
    font-weight: 400;
}

.filter-section {
    /* border-bottom: 1px solid rgba(201, 185, 141, 0.3); */
    padding-bottom: 20px;
    display: none;
}

.filter-award-type{
    margin-bottom: 80px;
}

.decade-list {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #4e4933;
    background-color: #C9B98D1A;
}

.decade-item {
    cursor: pointer;
    position: relative;
    padding-bottom: 10px;
}

.decade-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-gold);
}

.year-list {
    display: flex;
    gap: 5px;
    font-size: 18px;
    color: var(--color-dark);
    font-family: var(--font-main);
}

.year-item {
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s;
    color: black;
    text-decoration: none;
}

.year-item:hover,
.year-item.active {
    border-color: var(--color-gold);
    background-color: rgba(201, 185, 141, 0.1);
}

/* 自訂 select 容器（改名） */
.award-year-select {
    position: relative;
    width: 150px;
    font-size: 18px;
}

/* 真正的 select 元素 - 完全透明、無邊框、無背景 */
.award-year-select select {
    width: 100%;
    padding: 12px 30px 12px 0;
    /* 右邊留空間給箭頭 */
    font-size: 22px;
    background: transparent;
    /* 無背景 */
    border: none;
    /* 無邊框 */
    border-radius: 0;
    cursor: pointer;
    color: inherit;
    /* 隱藏原生箭頭 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #4E4933;
    font-weight: 700;
    font-family: var(--font-main);
}

/* 移除 focus 時的藍色外框 */
.award-year-select select:focus {
    outline: none;
}

/* 自訂向下箭頭：> 旋轉90度變向下 */
.award-year-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/60/60781.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
    pointer-events: none;
    /* 讓點擊穿透到 select */
}

/* 滑鼠移上去時箭頭變深色 */
.award-year-select:hover::after {
    color: #000;
}

.year-section-mobile {
    display: flex;
}

.recipients-grid {
    /* display: grid;
    grid-template-columns: 1fr;
    gap: 60px 40px; */
    margin-bottom: 5%;
}

.recipients-grid .cms-container-inside {
    /* padding-left: 50px; */
    position: relative;
    padding-bottom: 4%;
}

.recipient-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

.recipient-card .image-item {
    width: 100%;
    aspect-ratio: 283 / 206;
    /* Based on Figma Helper3 dimensions */
    background-color: #d9d9d9;
    object-fit: cover;
    margin-bottom: 20px;
}

.recipient-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: Copperplate-Gothic;
    font-weight: 500;
    cursor: pointer;
}

.recipient-pro-name {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: var(--color-black);
}

.recipient-dept {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-black);
}

/* --- KE Award Specific Layout (Text List) --- */
.ke-award-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* .award-category-header .block-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
} */ 
 
.award-category-header{
    margin-bottom: 5%;
    text-align: center;
    position: relative;
    padding: 75px 40px 30px 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.award-category-title {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 1.5rem;
    color: #68614B;
    font-family: Copperplate-Gothic;
    font-weight: 500;
}

.award-category-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 65px;
    /* 調高度 */
    background: url('../images/common/award_text_top_bar.png') center / 100% 100% no-repeat;
    background-size: contain;
    /* 或用 cover / 100% auto 視乎圖形 */
    pointer-events: none;
}

/* 下面條 */
.award-category-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: url('../images/common/award_text_bottom_bar.png') center / 100% 100% no-repeat;
    background-size: contain;
    pointer-events: none;
}



.award-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* gallery-v2 垂直間距加大到 60px */
.gallery-v2-slider .swiper-slide {
    margin-bottom: 40px !important;
    /* 額外加 20px 垂直間距 */
    /* 總垂直間距 = spaceBetween 40px + margin-bottom 20px = 60px */
}

/* 最後一行唔想有底邊距（避免多出空白） */
.gallery-v2-slider .swiper-wrapper {
    margin-bottom: -40px !important;
    /* 抵消最後一行嘅 margin-bottom */
}

/* 可選：美化 slide */
/* .gallery-v2-slider .swiper-slide {
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-v2-slider .swiper-slide:hover {
    transform: translateY(-10px);
}

.gallery-v2-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* 應用你嘅靚效果到 Swiper grid */
.gallery-v2-slider .gallery-item {
    display: grid;
    grid-template-areas: "stack";
    width: 100%;
    aspect-ratio: 3/2;
    /* 寬高比 3:2，可自行改 1/1 或 4/3 */
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.gallery-v2-slider .gallery-img {
    grid-area: stack;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-v2-slider .gallery-overlay {
    grid-area: stack;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.gallery-v2-slider .gallery-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-v2-slider .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-v2-slider .gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-v2-slider .action-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    /* var(--color-dark) 改成固定色 */
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-v2-slider .action-icon:hover {
    transform: scale(1.1);
}

/* 自訂 navigation bar - 放喺 slider 下方 */
.gallery-v2-slider .gallery-custom-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding: 20px 0;
    font-size: 16px;
    color: #333;
    user-select: none;
}

.gallery-v2-slider .custom-prev,
.gallery-v2-slider .custom-next {
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-v2-slider .custom-prev:hover,
.gallery-v2-slider .custom-next:hover {
    /* background: #f0f0f0; */
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-v2-slider .custom-prev:disabled,
.gallery-v2-slider .custom-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.gallery-v2-slider .gallery-counter {
    font-weight: 500;
    min-width: 140px;
    text-align: center;
}

.gallery-v4-grid .block-title {
    font-weight: 500;
    color: #000000;
    font-size: 1.7rem;
    margin-top: 2.5%;
    font-family: HelveticaNeue;
    font-weight: 500;
}

.gallery-custom-navigation .custom-prev:disabled,
.gallery-custom-navigation .custom-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.gallery-custom-navigation .custom-prev:disabled:hover,
.gallery-custom-navigation .custom-next:disabled:hover {
    background: transparent;
    transform: none;
}

/* 整體 wrapper */
.custom-year-slider-wrapper {
    margin: 25px 0 20px;
    position: relative;
}

/* 年份項目 */
.custom-year-slider .year-item-v2 {
    font-size: 25px;
    font-weight: bold;
    color: #AFA889;
    text-align: center;
    padding: 5px 20px;
    border-left: 1px solid #AFA889;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

/* 第一個無左邊線 */
/* @media (min-width: 768px) {
    .custom-year-slider .swiper-slide:nth-child(6n+1) .year-item-v2 {
        border-left: none;
    }
}
@media (max-width: 767px) {
    .custom-year-slider .swiper-slide:nth-child(3n+1) .year-item-v2 {
        border-left: none;
    }
} */

.custom-year-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

/* 箭咀按鈕 */
.custom-year-prev,
.custom-year-next {
    width: 50px;
    height: 50px;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

/* .custom-year-prev:hover,
.custom-year-next:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
} */

.custom-year-prev,
.custom-year-next {
    width: 44px;
    height: 44px;
    font-size: 24px;
}

/* inv-card */

.invitation-card-letter-effect {
    position: relative;
    z-index: 11;
}

.inv-card-body.open {
    overflow-y: auto;
    overflow-x: hidden;
}

.inv-envelope {
    position: relative;
    width: 320px;
    height: 200px;
    background: #f5e6d3;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
    cursor: pointer;
    transition: transform .4s;
    z-index: 2;
}

.inv-envelope:hover {
    /* transform:scale(1.05); */
}

.inv-flap {
    position: absolute;
    inset: 0 0 auto 0;
    height: 100px;
    background: #f5e6d3;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform-origin: top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.1, 1);
    z-index: 3;
}

.inv-envelope.open .inv-flap {
    transform: rotateX(180deg);
    z-index: -1;
}

.inv-envelope::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: #d4b89a;
    border-radius: 2px;
}

.inv-card {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50vw;
    max-width: 860px;
    background: linear-gradient(145deg, #fff, #fffaf0);
    border-radius: 16px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, .35);
    padding: 45px;
    display: flex;
    gap: 35px;
    transform: translate(-50%, -50%) scale(0.05) translateY(100px);
    opacity: 0;
    transition: opacity 0.6s 0.3s, transform 0.8s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
    z-index: 10;
    pointer-events: none;
}

.inv-envelope.open .inv-card {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}

@media (max-width:1000px) {
    .inv-card {
        flex-direction: column;
        width: 92vw;
        max-height: 94vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 40px 20px;
        gap: 30px;
    }

    .inv-card-photo {
        height: 45vh;
        max-height: 420px;
    }

    .inv-card-text {
        text-align: center;
    }

    .inv-card-text h1 {
        font-size: 34px;
    }

    .inv-rsvp-btn {
        align-self: center;
        padding: 18px 44px;
    }
}

.inv-card-photo {
    flex: 1;
    min-width: 280px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
}

.inv-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inv-card-text h1 {
    font-size: 38px;
    color: #b8860b;
    margin: 0 0 22px;
    letter-spacing: 1px;
}

.inv-card-text .inv-title {
    font-size: 29px;
    color: #8b4513;
}

.inv-card-text p {
    font-size: 19.5px;
    line-height: 2;
    color: #444;
    margin: 12px 0;
}

.inv-card-text .inv-date {
    font-size: 25px;
    color: #d2691e;
    font-weight: bold;
    margin: 22px 0;
}

.inv-rsvp-btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 16px 38px;
    background: #b8860b;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 19px;
    cursor: pointer;
    transition: .4s;
    text-decoration: none;
}

.inv-rsvp-btn:hover {
    background: #d4a017;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(184, 134, 11, .4);
}

.award-div-items{
    padding-top: 5%;
    padding-bottom: 5%;
}

.awards-container-pro.classic-view .recipients-grid{
    margin-bottom: 0;
}

.awards-container-pro.classic-view .recipients-grid .image-item{
    display: none;
}

.awards-container-pro.classic-view .recipients-grid > .cms-container-inside{
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

.awards-container-pro.classic-view .recipients-grid > .cms-container-inside > .cms-container-item{
    width: 100% !important;
    justify-items: center;
}

.awards-container-pro.classic-view .recipients-grid .text-item{
    text-align: center;
}

.award-pre-main-img > .cms-block-inside {
    display: flex;
    justify-content: center;
}

.award-pre-main-img > .cms-block-inside .image-item{
    max-width: 960px;
}

.award-collapse-div {
    padding: 5% 7%;
}



/* 1. 預設隱藏內容區塊 */
body.mainContainer .award-collapse-div .award-collapse-infos {
    display: none;
    font-family: var(--font-inter);
    font-weight: 400;
}

/* 2. 標題加上指標與相對定位（為了放置圖片） */
.award-collapse-title {
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* 為了避免文字跟圖片重疊，保留右邊的空間 */
}

/* 3. 使用圖片作為未展開時的 icon (設定預設狀態) */
.award-collapse-title::after {
    content: ''; /* 拔除了原本的 + 號 */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    
    /* 這裡設定圖片的長寬，請依照你實際的 icon 大小調整 */
    width: 40px; 
    height: 40px; 
    
    /* 載入你的圖片 */
    background-image: url('../images/common/award_arrow.png');
    background-size: contain;      /* 確保圖片縮放符合容器大小 */
    background-repeat: no-repeat;  /* 防止圖片重複 */
    background-position: center;   /* 圖片置中對齊 */
    
    /* 設定動畫漸變時間，包含 transform 的選轉效果 */
    transition: transform 0.3s ease;
}

.award-collapse-div.active .award-collapse-title::after {
    transform: translateY(-50%) rotate(180deg); 
}


.award-collapse-title .block-title{
    font-weight: 500;
    font-size: 45px;
    font-family: Copperplate-Gothic;
    font-weight: 500;
}

.filppingbook-link{
    margin-top: 5%;
}

.invitation-infos{
    font-size: 1.5rem;
    font-weight: 400;
}

.contact-us-div{
    font-family: var(--font-inter);
    font-weight: 500;
}

.award-filter-item {
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s;
}

.award-filter-item.active {
    color: #C9B98D;
    font-weight: bold;
}

.award-filter-item:hover {
    opacity: 0.8;
}

.go-top-btn{
	position:fixed; 
	right:3%; 
	bottom:5%; 
	cursor:pointer; 
	display:none; 
	z-index:9999;
}

.schedule-item-title-v2{
    font-weight: 300;
}