:root {
    --primary-color: #0a192f; /* Deep Navy Blue */
    --secondary-color: #ffffff;
    --accent-color: #2e7d32; /* Soft Green */
    --accent-light: #4caf50;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-light: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.bg-light {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.bg-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.text-white {
    color: var(--secondary-color) !important;
}

/* Modern Glassmorphism Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.6);
    background: linear-gradient(135deg, #4338ca, #4f46e5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #4f46e5;
    color: #4f46e5;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.2);
}

.btn-secondary:hover {
    background: #4f46e5;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.3);
}

/* Ultra Modern Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 35px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px 0 rgba(31, 38, 135, 0.25);
}

/* Floating Glassy Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    padding: 15px 30px;
    border-radius: 20px;
    transition: var(--transition);
}

.header:hover {
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-list a {
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    font-size: 0.95rem;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--accent-color);
}

.btn-nav {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    color: var(--secondary-color) !important;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.3);
}

.btn-nav:hover {
    background: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-nav-student {
    background: var(--accent-color);
    border-color: var(--accent-color);
    margin-left: 6px;
}

.btn-nav-student:hover {
    background: #1b5e20;
    border-color: #1b5e20;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 10;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    margin: 6px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section with Gradient Background */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(226, 232, 240, 0.92)), url('assets/hero-bg-placeholder.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(203, 213, 225, 0.4) 0%, transparent 50%);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-tagline {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #4f46e5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Modern About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.img-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '📸';
    position: absolute;
    font-size: 4rem;
    opacity: 0.3;
}

/* Features Grid with Hover Effects */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
}

.feature-card {
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    opacity: 0;
    border-radius: 24px;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.feature-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

/* Academics */
.academics-content {
    max-width: 900px;
    margin: 0 auto;
}

.academic-list {
    margin-top: 25px;
    padding-left: 0;
}

.academic-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    line-height: 1.8;
}

.academic-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Principal Section */
.principal-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.principal-img {
    flex: 0 0 320px;
}

.principal-img .img-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.principal-text blockquote {
    font-style: italic;
    font-size: 1.15rem;
    border-left: 5px solid var(--accent-color);
    padding-left: 25px;
    margin-top: 20px;
    color: var(--text-light);
    line-height: 1.9;
}

.principal-text h3 {
    font-size: 1.8rem;
}

.principal-text .role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
}

.facility-item {
    text-align: center;
    transition: var(--transition);
}

.facility-item:hover {
    transform: translateY(-8px);
}

.facility-item .img-placeholder {
    height: 220px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.facility-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Local Trust Section */
.local-trust-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
}

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

/* Contact Section with Glass Effect */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--accent-color);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(10, 25, 47, 0.1);
    border-radius: 12px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

/* Modern Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), #162235);
    color: var(--secondary-color);
    padding: 70px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer h4 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--accent-light);
    padding-left: 8px;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        top: 10px;
        width: 95%;
        padding: 12px 20px;
    }

    .hamburger {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 90%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 20px;
        border-radius: 20px;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
        transition: var(--transition);
        gap: 25px;
    }

    .nav-list.active {
        right: 5%;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
        padding-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero {
        min-height: 100vh;
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    .about-grid,
    .principal-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .principal-wrapper {
        flex-direction: column;
    }

    .principal-img {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    
    .principal-img .img-placeholder {
        width: 100%;
        height: 300px;
        max-height: 300px;
    }
    
    .img-placeholder {
        width: 100%;
        height: 250px;
    }
    
    .facility-item .img-placeholder {
        height: 200px;
    }

    .glass-card {
        padding: 20px;
    }
    
    .feature-card .icon {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .footer {
        padding: 50px 20px 25px;
    }
    
    .footer-content {
        gap: 35px;
        grid-template-columns: 1fr;
    }

    .local-trust-content {
        font-size: 1rem;
        padding: 0 10px;
    }

    .principal-text blockquote {
        font-size: 1rem;
        padding-left: 20px;
    }

    .academic-list li {
        font-size: 0.95rem;
        padding-left: 30px;
    }

    .contact-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo a {
        font-size: 1.3rem;
    }

    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .section {
        padding: 50px 15px;
    }

    .glass-card {
        padding: 18px;
    }

    .btn {
        padding: 11px 20px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .principal-img .img-placeholder {
        height: 280px;
    }

    .img-placeholder {
        height: 220px;
    }

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

/* ============================================================
   DYNAMIC ADDITIONS — Announcement Bar, Latest Updates, Forms
   ============================================================ */

/* ── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: #fff;
    z-index: 1100;
    height: 38px;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.4);
}

.announcement-label {
    background: var(--primary-color);
    color: #fff;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 2px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-wrap {
    overflow: hidden;
    flex: 1;
}

.ticker {
    display: inline-flex;
    white-space: nowrap;
    /* Content is doubled — animate 0 → -50% for seamless visible-from-start loop */
    animation: ticker-scroll 30s linear infinite;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    padding: 0 24px;
}

.ticker a {
    color: #fff;
    text-decoration: none;
}

/* "Click Here →" pill shown on linked announcements */
.ticker-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 1px 10px;
    font-size: 0.76rem;
    font-weight: 700;
    margin-left: 6px;
    letter-spacing: 0.3px;
    vertical-align: middle;
}

.ticker a:hover .ticker-cta {
    background: rgba(255, 255, 255, 0.45);
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Push header down when announcement bar is present */
.has-announcement .header {
    top: 58px;
}

@media (max-width: 768px) {
    .has-announcement .header {
        top: 48px;
    }
}

/* ── Latest Updates Section ────────────────────────────────── */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.update-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.update-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.update-body {
    padding: 22px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.update-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.update-date {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Category badges */
.update-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: uppercase;
}

.update-badge-general { background: #4f46e5; }
.update-badge-holiday  { background: #dc2626; }
.update-badge-event    { background: #d97706; }
.update-badge-notice   { background: #2e7d32; }

.update-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--primary-color);
}

.update-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.update-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.update-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}

.update-btn-pdf {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.update-btn-pdf:hover {
    background: #dc2626;
    color: #fff;
}

.update-btn-link {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    border: 1px solid rgba(79, 70, 229, 0.25);
}

.update-btn-link:hover {
    background: #4f46e5;
    color: #fff;
}

/* ── Facility images ────────────────────────────────────────── */
.facility-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    display: block;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* ── Contact form message ───────────────────────────────────── */
.form-message {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background: rgba(46, 125, 50, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(46, 125, 50, 0.3);
    display: block;
}

.form-message.error {
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.25);
    display: block;
}

/* ── Responsive: Latest Updates ─────────────────────────────── */
@media (max-width: 768px) {
    .updates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .update-img { height: 160px; }

    .update-body { padding: 18px 20px 22px; }

    .announcement-bar {
        height: 34px;
        font-size: 0.82rem;
    }

    .announcement-label {
        font-size: 0.68rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .updates-grid { gap: 16px; }
}
