
        /* Container settings */
        .logo-slider {
            overflow: hidden;
            padding: 40px 0;
            background: white;
            position: relative;
            width: 100%;
            /* Optional: Adds a fade effect on the left and right edges */
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        /* The track that moves */
        .logo-slide-track {
            display: flex;
            width: max-content; /* Automatically fits all logos + clones */
            animation: scroll 30s linear infinite;
        }

        /* Pause on hover */
        .logo-slider:hover .logo-slide-track {
            animation-play-state: paused;
        }

        .slide-2 {
            width: 250px; /* Fixed width for each item */
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
        }

        .slide-2 img {
            width: 100%;
            height: 120px;
            object-fit: contain; /* Keeps logo proportions safe */
            filter: grayscale(100%); /* Optional: Make logos look uniform */
            transition: all 0.3s ease;
        }

        .slide-2 img:hover {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        /* THE MAGIC: Move exactly 50% of the total track width */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                /* Since the track contains 2 identical sets, 
                   moving -50% lands exactly at the start of set #2 */
                transform: translateX(-50%);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .slide-2 { width: 150px; }
            .slide-2 img { height: 80px; }
        }

        /* ── News Slider (same mechanics as logo slider) ── */
        .news-slider {
            overflow: hidden;
            padding: 16px 0 32px;
            position: relative;
            width: 100%;
            /*mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);*/
        }
        .news-slide-track {
            display: flex;
            width: max-content;
            animation: newsScroll 30s linear infinite;
        }
        .news-slider:hover .news-slide-track {
            animation-play-state: paused;
        }
        .news-slide {
            width: 320px;
            flex-shrink: 0;
            padding: 0 12px;
        }
        .news-slide .news-card {
            height: 100%;
        }
        @keyframes newsScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @media (max-width: 768px) {
            .news-slide { width: 260px; }
        }

        /* ── News Slider arrows ───────────────────────────── */
        .news-slider-wrap {
            position: relative;
            padding: 0 64px;        /* reserve space on both sides for the arrows */
        }
        .news-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 2px solid #8A923E;
            background: #ffffff;
            color: #6B7330;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
            box-shadow: 0 2px 12px rgba(106,115,48,0.20);
            z-index: 10;
            flex-shrink: 0;
        }
        .news-arrow--prev { left: 4px; }
        .news-arrow--next { right: 4px; }
        .news-arrow:hover {
            background: #8A923E;
            color: #ffffff;
            border-color: #8A923E;
            box-shadow: 0 4px 20px rgba(106,115,48,0.40);
            transform: translateY(-50%) scale(1.12);
        }
        .news-arrow:active {
            transform: translateY(-50%) scale(0.96);
        }
        @media (max-width: 768px) {
            .news-slider-wrap { padding: 0 44px; }
            .news-arrow { width: 36px; height: 36px; }
        }
        .notice-section {
            background: linear-gradient(135deg, #f5f7e8 0%, #eef0dc 100%);
            padding: 60px 0 72px;
        }
        .notice-section__inner {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .notice-board__header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }
        .notice-board__icon {
            font-size: 28px;
            line-height: 1;
        }
        .notice-board__heading {
            font-family: 'Arimo', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #2e3010;
            margin: 0;
            padding-left: 14px;
            border-left: 4px solid #8A923E;
        }
        .notice-board__wrap {
            background: #ffffff;
            border-radius: 14px;
            box-shadow: 0 6px 32px rgba(106,115,48,0.12), 0 2px 6px rgba(0,0,0,0.05);
            overflow: hidden;
            border: 1px solid #e0e5b0;
        }

        /* Table */
        .notice-table {
            width: 100%;
            border-collapse: collapse;
        }
        .notice-table__th {
            background: #8A923E;
            color: #ffffff;
            font-family: 'Arimo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 14px 18px;
            text-align: left;
        }
        .notice-table__th--no     { width: 52px; text-align: center; }
        .notice-table__th--date   { width: 120px; }
        .notice-table__th--action { width: 90px; text-align: center; }

        .notice-table__row {
            border-bottom: 1px solid #f0f2e0;
            transition: background 0.18s;
        }
        .notice-table__row:last-child { border-bottom: none; }
        .notice-table__row:hover { background: #fafbe8; }
        .notice-table__row--new { background: #fffde8; }
        .notice-table__row--new:hover { background: #f7f8d8; }

        .notice-table__td {
            font-family: 'Arimo', sans-serif;
            font-size: 14.5px;
            color: #2e3010;
            padding: 14px 18px;
            vertical-align: middle;
        }
        .notice-table__td--no {
            text-align: center;
            font-weight: 700;
            color: #8A923E;
            font-size: 13px;
        }
        .notice-table__td--title { font-weight: 500; line-height: 1.5; }
        .notice-table__td--date  { color: #6b7280; font-size: 13px; white-space: nowrap; }
        .notice-table__td--action { text-align: center; }

        /* Badges */
        .notice-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 2px 7px;
            border-radius: 20px;
            margin-left: 7px;
            vertical-align: middle;
            text-transform: uppercase;
        }
        .notice-badge--new { background: #fde68a; color: #7c5500; }
        .notice-badge--pdf { background: #fee2e2; color: #991b1b; }

        /* View button */
        .notice-btn {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: 'Arimo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: #6B7330;
            background: #f1f4d6;
            border: 1.5px solid #c5cc7a;
            border-radius: 6px;
            padding: 5px 14px;
            text-decoration: none;
            transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
            white-space: nowrap;
        }
        
        .notice-btn:hover {
            background: #8A923E;
            color: #ffffff;
            border-color: #8A923E;
            transform: translateY(-1px);
        }

        /* Pagination */
        .notice-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 18px 0 20px;
            border-top: 1px solid #f0f2e0;
            background: #fafbe8;
        }
        .notice-page-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 36px;
            height: 36px;
            padding: 0 10px;
            font-family: 'Arimo', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #6B7330;
            background: #ffffff;
            border: 1.5px solid #d6dba0;
            border-radius: 7px;
            text-decoration: none;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
        }
        .notice-page-btn:hover { background: #8A923E; color: #fff; border-color: #8A923E; }
        .notice-page-btn--active {
            background: #8A923E;
            color: #ffffff;
            border-color: #8A923E;
            cursor: default;
        }
        .notice-page-btn--disabled {
            color: #bbb;
            border-color: #e8e8e8;
            background: #f9f9f9;
            cursor: default;
        }

        /* Empty state */
        .notice-empty {
            text-align: center;
            padding: 48px 0;
            color: #9ca36b;
            font-family: 'Arimo', sans-serif;
            font-size: 15px;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .notice-table__th--date,
            .notice-table__td--date  { display: none; }
            .notice-board__heading   { font-size: 22px; }
            .notice-table__td        { padding: 12px 12px; font-size: 13.5px; }
        }
