/* ==========================================================================
       DU SOL MODERN NOTICE BOARD STYLES
       ========================================================================== */

:root {
    --sol-purple: #4f0071;
    --sol-purple-dark: #37004f;
    --sol-purple-light: #f6eefe;
    --sol-purple-border: #e9d5ff;
    --sol-gold: #deb04c;
    --sol-gold-dark: #b88628;
    --sol-slate-900: #0f172a;
    --sol-slate-800: #1e293b;
    --sol-slate-700: #334155;
    --sol-slate-600: #475569;
    --sol-slate-500: #64748b;
    --sol-slate-200: #e2e8f0;
    --sol-slate-100: #f1f5f9;
    --sol-slate-50: #f8fafc;
    --sol-shadow-card: 0 10px 30px -4px rgba(79, 0, 113, 0.07), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
    --sol-shadow-hover: 0 16px 36px -4px rgba(79, 0, 113, 0.12), 0 6px 16px -2px rgba(0, 0, 0, 0.06);
}

/* 1. HERO BANNER */
.hero-pcp.notice-hero-section {
    position: relative !important;
    height: auto !important;
    min-height: 260px !important;
    width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    padding: 3rem 1.5rem 4.5rem !important;
    background: #250035;
    margin: 0;
}

.notice-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.notice-hero-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: scale(1.04);
    filter: brightness(0.65) contrast(1.1);
    transition: transform 8s ease;
}

.notice-hero-section:hover .notice-hero-img {
    transform: scale(1.0);
}

.notice-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(55, 0, 79, 0.94) 0%, rgba(79, 0, 113, 0.86) 45%, rgba(15, 23, 42, 0.85) 100%);
}

.notice-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(#ffffff 1.2px, transparent 1.2px);
    background-size: 22px 22px;
}

.notice-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

/* Breadcrumbs */
.notice-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    font-weight: 500;
    color: #e9d5ff;
    margin-bottom: 1.25rem;
}

.crumb-item {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

    .crumb-item:hover {
        color: var(--sol-gold);
    }

.crumb-separator {
    opacity: 0.5;
    font-size: 0.75rem;
}

.crumb-current {
    color: var(--sol-gold);
    font-weight: 600;
}

/* Hero Header Content */
.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(222, 176, 76, 0.15);
    border: 1px solid rgba(222, 176, 76, 0.35);
    color: #fce7b2;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: hero-pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@@keyframes hero-pulse {
    to {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

/* Reset/Override .official-heading from style.css */
.notice-hero-section .official-heading,
.notice-hero-title {
    margin: 0 0 0.6rem 0 !important;
    font-size: clamp(2rem, 3.8vw, 2.75rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.notice-hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    line-height: 1.55;
    margin: 0 0 1.25rem 0;
    font-weight: 400;
}

.hero-gold-line {
    width: 100px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--sol-gold) 0%, rgba(222, 176, 76, 0.2) 80%, transparent 100%);
}

/* 2. ANNOUNCEMENTS SECTION & TOOLBAR */
.announcements-section {
    max-width: 1240px;
    margin: -2.25rem auto 3rem;
    padding: 0 1.25rem;
    position: relative;
    z-index: 10;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

/* Floating Header Toolbar */
.announcements-toolbar {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--sol-slate-200);
    box-shadow: var(--sol-shadow-card);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.toolbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--sol-purple-light);
    color: var(--sol-purple);
    border: 1px solid var(--sol-purple-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sol-slate-900);
    margin: 0;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 0.8125rem;
    color: var(--sol-slate-500);
    margin: 0.2rem 0 0 0;
}

.live-counter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: var(--sol-purple-light);
    color: var(--sol-purple);
    border: 1px solid var(--sol-purple-border);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
}

.live-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sol-purple);
    box-shadow: 0 0 0 0 rgba(79, 0, 113, 0.6);
    animation: purple-pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@@keyframes purple-pulse {
    to {
        box-shadow: 0 0 0 7px rgba(79, 0, 113, 0);
    }
}

/* Dynamic Category Filter Chips Bar */
.category-filter-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

    .category-filter-nav::-webkit-scrollbar {
        display: none;
    }

.filter-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sol-slate-500);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.filter-chips-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid var(--sol-slate-200);
    background: #ffffff;
    color: var(--sol-slate-600);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .filter-chip:hover {
        border-color: var(--sol-purple-border);
        color: var(--sol-purple);
        background: var(--sol-purple-light);
    }

    .filter-chip.active {
        background: var(--sol-purple);
        color: #ffffff;
        border-color: var(--sol-purple);
        box-shadow: 0 4px 12px rgba(79, 0, 113, 0.25);
        font-weight: 600;
    }

.chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 7px;
    border-radius: 12px;
    font-size: 0.6875rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.06);
    color: inherit;
    transition: all 0.2s ease;
}

.filter-chip.active .chip-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.filter-chip:hover .chip-count {
    background: rgba(79, 0, 113, 0.12);
}

.filter-chip.active:hover .chip-count {
    background: rgba(255, 255, 255, 0.3);
}

/* 3. TABLE CONTAINER & TABLE */
.table-container.card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--sol-shadow-card);
    overflow: hidden;
    border: 1px solid var(--sol-slate-200);
    transition: box-shadow 0.25s ease;
    position: relative;
}

    .table-container.card:hover {
        box-shadow: var(--sol-shadow-hover);
    }

.card-accent-bar {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--sol-purple) 0%, #8a2be2 50%, var(--sol-gold) 100%);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.announcement-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9375rem;
    min-width: 680px;
}

    /* Table Header */
    .announcement-table thead {
        background: var(--sol-slate-50);
        border-bottom: 2px solid var(--sol-slate-200);
    }

    .announcement-table th {
        padding: 14px 18px;
        text-align: left;
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--sol-slate-600);
        white-space: nowrap;
        border-bottom: 2px solid var(--sol-slate-200);
    }

.th-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .th-wrap.th-center {
        justify-content: center;
        width: 100%;
    }

.th-icon {
    color: var(--sol-purple);
}

/* Table Rows & Cells */
.announcement-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--sol-slate-100);
    vertical-align: middle;
    color: var(--sol-slate-700);
}

.announcement-row {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

    .announcement-row:hover {
        background-color: #faf6fd;
        box-shadow: inset 3px 0 0 0 var(--sol-purple);
    }

    .announcement-row:last-child td {
        border-bottom: none;
    }

/* Column Sizing */
.col-title {
    min-width: 300px;
}

.col-category {
    width: 150px;
}

.col-date {
    width: 140px;
}

.col-actions {
    width: 110px;
    text-align: center;
}

/* Title Cell */
.title-cell-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.doc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--sol-purple-light);
    color: var(--sol-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.announcement-row:hover .doc-avatar {
    background: var(--sol-purple);
    color: #ffffff;
    transform: translateY(-1px);
}

.title-text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.title-heading-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.title-text {
    font-weight: 600;
    color: var(--sol-slate-800);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
    transition: color 0.15s ease;
}

.announcement-row:hover .title-text {
    color: var(--sol-purple);
}

/* 'NEW' Badge */
.pill-new-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 7px;
    border-radius: 4px;
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    flex-shrink: 0;
}

.pill-new-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f59e0b;
}

/* Category Badges (Dynamic Semantic Styling) */
.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    background: var(--sol-purple-light);
    color: var(--sol-purple);
    border: 1px solid var(--sol-purple-border);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.category-badge[data-category*="Exam" i] {
    background: #fff1f2;
    color: #be123c;
    border-color: #fecdd3;
}

.category-badge[data-category*="Admission" i] {
    background: #ecfdf5;
    color: #047857;
    border-color: #a7f3d0;
}

.category-badge[data-category*="PCP" i],
.category-badge[data-category*="Class" i],
.category-badge[data-category*="Academic" i] {
    background: #fffbeb;
    color: #b45309;
    border-color: #fde68a;
}

.category-badge[data-category*="Result" i],
.category-badge[data-category*="Grade" i] {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.category-badge[data-category*="Event" i],
.category-badge[data-category*="Activity" i],
.category-badge[data-category*="Workshop" i] {
    background: #fdf4ff;
    color: #a21caf;
    border-color: #f5d0fe;
}

.category-badge[data-category*="Placement" i],
.category-badge[data-category*="Career" i] {
    background: #f0fdfa;
    color: #0f766e;
    border-color: #99f6e4;
}

/* Date Cell */
.date-tag {
    display: inline-flex;
    flex-direction: column;
    padding: 4px 10px;
    border-radius: 8px;
    background: var(--sol-slate-100);
    border: 1px solid rgba(226, 232, 240, 0.8);
    line-height: 1.2;
}

.date-day {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--sol-slate-800);
    white-space: nowrap;
}

.date-year {
    font-size: 0.6875rem;
    color: var(--sol-slate-500);
    font-weight: 500;
}

/* Action Button */
.btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 15px;
    border-radius: 20px;
    background: var(--sol-purple-light);
    color: var(--sol-purple);
    border: 1px solid var(--sol-purple-border);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all 0.22s ease;
    white-space: nowrap;
}

    .btn-view:hover {
        background: var(--sol-purple);
        color: #ffffff;
        border-color: var(--sol-purple);
        box-shadow: 0 4px 12px rgba(79, 0, 113, 0.25);
        transform: translateY(-1.5px);
    }

    .btn-view:focus-visible {
        outline: 2px solid var(--sol-purple);
        outline-offset: 2px;
    }

.btn-icon {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.btn-view:hover .btn-icon {
    transform: translate(1px, -1px);
}

/* 4. DATATABLES OVERRIDES & STYLING */
.dataTables_wrapper {
    padding: 1.25rem 1.5rem;
}

    .dataTables_wrapper .dataTables_length {
        font-size: 0.85rem;
        color: var(--sol-slate-600);
        margin-bottom: 1rem;
    }

        .dataTables_wrapper .dataTables_length select {
            border: 1.5px solid var(--sol-slate-200);
            border-radius: 8px;
            padding: 5px 28px 5px 10px;
            font-size: 0.85rem;
            color: var(--sol-slate-800);
            background: #ffffff;
            cursor: pointer;
            margin: 0 4px;
            outline: none;
            transition: border-color 0.2s ease;
        }

            .dataTables_wrapper .dataTables_length select:focus {
                border-color: var(--sol-purple);
            }

    .dataTables_wrapper .dataTables_filter {
        margin-bottom: 1rem;
    }

        .dataTables_wrapper .dataTables_filter label {
            font-size: 0.85rem;
            color: var(--sol-slate-600);
            font-weight: 500;
        }

        .dataTables_wrapper .dataTables_filter input {
            border: 1.5px solid var(--sol-slate-200);
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 0.85rem;
            outline: none;
            transition: all 0.2s ease;
            margin-left: 8px;
            min-width: 200px;
            background: #ffffff;
        }

            .dataTables_wrapper .dataTables_filter input:focus {
                border-color: var(--sol-purple);
                box-shadow: 0 0 0 3px rgba(79, 0, 113, 0.12);
            }

    .dataTables_wrapper .dataTables_info {
        font-size: 0.8125rem;
        color: var(--sol-slate-500);
        padding-top: 1.25rem;
        font-weight: 500;
    }

    .dataTables_wrapper .dataTables_paginate {
        padding-top: 1.25rem;
        display: flex;
        gap: 4px;
        justify-content: flex-end;
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button {
            border-radius: 8px !important;
            border: 1px solid var(--sol-slate-200) !important;
            background: #ffffff !important;
            color: var(--sol-slate-600) !important;
            font-size: 0.8125rem !important;
            font-weight: 600 !important;
            padding: 6px 12px !important;
            transition: all 0.18s ease !important;
            cursor: pointer;
        }

            .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
                background: var(--sol-purple-light) !important;
                border-color: var(--sol-purple-border) !important;
                color: var(--sol-purple) !important;
            }

            .dataTables_wrapper .dataTables_paginate .paginate_button.current,
            .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
                background: var(--sol-purple) !important;
                border-color: var(--sol-purple) !important;
                color: #ffffff !important;
                box-shadow: 0 3px 10px rgba(79, 0, 113, 0.25) !important;
            }

            .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
            .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
                opacity: 0.45;
                cursor: not-allowed;
                background: var(--sol-slate-50) !important;
                border-color: var(--sol-slate-200) !important;
                color: var(--sol-slate-400) !important;
            }

/* 5. RESPONSIVE DESIGN */
@@media (max-width: 991px) {
    .announcements-section {
        margin-top: -1.75rem;
    }

    .hero-pcp.notice-hero-section {
        min-height: 220px !important;
        padding: 2.5rem 1.25rem 3.5rem !important;
    }

    .announcements-toolbar {
        padding: 1rem 1.25rem;
    }
}

@@media (max-width: 768px) {
    .announcements-section {
        padding: 0 0.75rem;
        margin-top: -1.25rem;
    }

    .hero-pcp.notice-hero-section {
        padding: 2rem 1rem 3rem !important;
    }

    .announcements-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem;
    }

    .toolbar-actions {
        width: 100%;
    }

    .live-counter-badge {
        width: 100%;
        justify-content: center;
    }

    .announcement-table th,
    .announcement-table td {
        padding: 12px 14px;
    }

    .col-title {
        min-width: 220px;
    }

    .col-category {
        width: 110px;
    }

    .col-date {
        width: 100px;
    }

    .col-actions {
        width: 70px;
    }

    .btn-view .btn-label {
        display: none;
    }

    .btn-view {
        padding: 7px 10px;
    }

    .dataTables_wrapper {
        padding: 1rem;
    }

        .dataTables_wrapper .dataTables_filter,
        .dataTables_wrapper .dataTables_length {
            float: none;
            text-align: left;
        }

            .dataTables_wrapper .dataTables_filter input {
                width: 100%;
                margin-left: 0;
                margin-top: 4px;
            }
}

/* Print Styles */
@@media print {
    .notice-hero-section,
    .category-filter-nav,
    .btn-view,
    .dataTables_filter,
    .dataTables_length,
    .dataTables_paginate {
        display: none !important;
    }

    .announcements-section {
        margin: 0;
        padding: 0;
        max-width: 100%;
    }

    .table-container.card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ==========================================================================
   ARCHIVE NEWS CALLOUT BANNER (AT THE BOTTOM OF NEWS BOARD)
   ========================================================================== */
.archive-callout-banner {
    position: relative;
    margin-top: 2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #250035 0%, #4f0071 50%, #1e1b4b 100%);
    border: 1px solid rgba(222, 176, 76, 0.35);
    box-shadow: 0 12px 32px -4px rgba(79, 0, 113, 0.22), 0 4px 12px -2px rgba(0, 0, 0, 0.1);
    padding: 1.65rem 2rem;
    overflow: hidden;
    color: #ffffff;
}

.archive-glow-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 176, 76, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.archive-callout-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.archive-info-side {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1 1 500px;
    min-width: 0;
}

.archive-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(222, 176, 76, 0.15);
    border: 1.5px solid rgba(222, 176, 76, 0.4);
    color: #fde047;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.archive-text-group {
    flex-grow: 1;
    min-width: 0;
}

.archive-badge-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
}

.archive-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 9px;
    border-radius: 20px;
    background: rgba(222, 176, 76, 0.2);
    border: 1px solid rgba(222, 176, 76, 0.35);
    color: #fef08a;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.archive-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #facc15;
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.25);
}

.archive-subtag {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.archive-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.archive-description {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.45;
}

.archive-action-side {
    flex-shrink: 0;
}

.btn-archive-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, #fcd34d 0%, #deb04c 100%);
    color: #250035 !important;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(222, 176, 76, 0.4);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-archive-cta:hover {
    background: #fef08a;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(222, 176, 76, 0.6);
    color: #1a0024 !important;
}

.btn-archive-arrow {
    transition: transform 0.22s ease;
}

.btn-archive-cta:hover .btn-archive-arrow {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .archive-callout-banner {
        padding: 1.35rem 1.25rem;
    }

    .archive-info-side {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .archive-action-side {
        width: 100%;
    }

    .btn-archive-cta {
        width: 100%;
        justify-content: center;
    }
}

