.gallery-banner-section {
width: 100%;
display: flex;
flex-direction: column;
background-color: #FAF9F6;
} .gb-image-wrapper {
position: relative;
width: 100%;
height: 188px;
}
.gb-bg-img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
} .gb-badge-track {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
max-width: 1440px;
height: 100%;
pointer-events: none;
z-index: 10;
}
.gb-rotating-badge {
position: absolute;
bottom: 0;
right: 40px;  transform: translateY(50%); 
width: 160px;
height: 160px;
}
.spin-animation {
width: 100%;
height: 100%;
animation: spin 15s linear infinite;
display: block;
filter: invert(1); }
.static-center-logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 40px; 
height: auto;
} @keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
} .gb-content-wrapper {
width: 100%;
height: 258px;
background-color: #FAF9F6;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
padding: 0 20px;
box-sizing: border-box;
}
.gb-title {
font-family: 'Cormorant Garamond', serif;
font-size: 80px;
font-weight: 500;
color: #000000;
margin: 0 0 15px 0; line-height: 1;
}
.gb-desc {
font-family: 'General Sans', sans-serif;
font-size: 16px;
font-weight: 400;
color: #333333;
text-align: center;
max-width: 700px;
margin: 0;
line-height: 1.6;
} .gb-bottom-line {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%); width: calc(100% - 80px); 
max-width: 1360px; height: 1px;
background-color: #E5E5E5; } @media (max-width: 1023px) {
.gb-image-wrapper {
height: 240px; } .gb-rotating-badge {
width: 140px;
height: 140px;
right: 20px;  top: 50%;
bottom: auto; transform: translateY(-50%); 
}
.static-center-logo {
width: 32px; } .gb-content-wrapper {
height: auto; padding: 40px 20px 60px 20px; 
align-items: flex-start; }
.gb-title {
font-size: 48px; }
.gb-desc {
font-size: 16px; text-align: left; }
.gb-bottom-line {
width: calc(100% - 40px); }
}