@keyframes scroll {
    from { transform: translateX(var(--start)); }
    to   { transform: translateX(var(--end));   }
  }
  .marquee-paused { animation-play-state: paused !important; }


  .bg-noise {
  background-image: 
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 2px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 2px
    );
  background-size: 4px 4px;
}
[x-cloak] {
    display: none !important;
}


.page-editor-content {
    font-family: 'DM Sans', sans-serif;
    color: #3A3D41;
}

.page-editor-content h3,
.page-editor-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1D4283;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    font-family: 'DM Sans', sans-serif;
}

.page-editor-content p,
.page-editor-content ul,
.page-editor-content ol {
    max-width: 1136px;
    font-size: 14px;
    line-height: 160%;
    font-weight: 400;
    color: #3A3D41;
    margin-bottom: 16px;
    padding-left: 0;
    list-style: none;
}

.page-editor-content ol {
    counter-reset: item;
}

.page-editor-content ol > li {
    position: relative;
    display: block;
    margin-bottom: 12px;
    padding-left: 36px;
    min-height: 24px;
    counter-increment: item;
}

.page-editor-content ol > li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(29, 66, 131, 0.1);
    color: #1D4283;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.page-editor-content > ul > li {
    position: relative;
    display: block;
    margin-bottom: 12px;
    padding-left: 36px;
    min-height: 24px;
}

.page-editor-content > ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #1D4283;
    border-radius: 50%;
}

.page-editor-content li ul,
.page-editor-content li ol {
    margin-top: 8px;
    margin-bottom: 0;
    padding-left: 0;
}

.page-editor-content li li {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 4px;
    padding-left: 20px;
}

.page-editor-content li li::before {
    content: ""; 
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #1D4283;
    border-radius: 50%;
}

.page-editor-content a{
    color: #1D4283 !important;
    font-weight:500;
    line-height:1.6;
    text-decoration:none;
    transition:color 0.2s ease, text-decoration 0.2s ease;
}

.page-editor-content a:hover{
    text-decoration:underline;
}

.page-editor-content a:visited{
    color: purple !important;
}

@media (max-width:768px){
    .notice-content img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

#glightbox modal
.glightbox-container {
    z-index: 99999 !important;
}
.gzoom-controls {
    position: fixed;
    top: 16px;
    right: 70px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 4px;
}
.gzoom-controls button {
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 1;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}
.gzoom-controls button:hover {
    background: rgba(0,0,0,0.7);
}
.gzoom-controls button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.gslide-image img.gzoomed {
    cursor: grab;
}
.gslide-image img.gzoomed:active {
    cursor: grabbing;
}
#glightbox modal