/*
Theme Name: St. Sebastian Church
Theme URI: https://example.com
Author: Church Theme Team
Author URI: https://example.com
Description: A beautiful, professional WordPress theme designed specifically for churches with elegant layouts and church-focused features.
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: st-sebastian-church
Domain Path: /languages

This theme, like WordPress, is licensed under the GPL.
*/

/* ============================================
   GENERAL STYLES
   ============================================ */

:root {
    --primary-color: #5C2E2E;
    --secondary-color: #DAA520;
    --accent-color: #2C5282;
    --light-bg: #F9F7F4;
    --white: #FFFFFF;
    --dark-text: #333333;
    --light-text: #666666;
    --border-color: #E0E0E0;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.site-description {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

/* Navigation Menu */
nav {
    flex: 1;
    margin-left: 2rem;
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-menu a:hover,
.main-menu li.active > a {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.main-menu ul {
    list-style: none;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0,0,0,0.2);
    flex-direction: column;
    gap: 0;
    min-width: 200px;
    border-top: 2px solid var(--secondary-color);
}

.main-menu li:hover > ul {
    display: flex;
}

.main-menu ul li a {
    padding: 0.75rem 1.5rem;
    display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: linear-gradient(rgba(92, 46, 46, 0.7), rgba(92, 46, 46, 0.7)), url('images/hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

/* ============================================
   MAIN CONTENT
   ============================================ */

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

main {
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
}

.page-content {
    background-color: var(--white);
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #4A7BA7;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 0.9rem;
}

/* ============================================
   EVENTS SECTION
   ============================================ */

.events-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-date {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-card p {
    margin-bottom: 1rem;
}

.event-link {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   MASS TIMINGS SECTION
   ============================================ */

.mass-timings-section {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.timings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.timing-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timing-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timing-card ul {
    list-style: none;
}

.timing-card li {
    padding: 0.5rem 0;
    color: var(--light-text);
}

/* ============================================
   ASSOCIATIONS SECTION
   ============================================ */

.associations-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.associations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.association-item {
    text-align: center;
    padding: 1.5rem;
}

.association-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.association-item h4 {
    color: var(--primary-color);
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 1rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar ul li:last-child {
    border-bottom: none;
}

.sidebar ul li a {
    color: var(--primary-color);
    font-weight: 500;
}

.sidebar ul li a:hover {
    color: var(--secondary-color);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

.footer-widget h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 0.5rem;
}

.footer-widget ul li a {
    color: var(--white);
}

.footer-widget ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }
.pt-4 { padding-top: 4rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }
.pb-4 { padding-bottom: 4rem; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .site-header {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        margin-left: 0;
        width: 100%;
    }

    .main-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-section {
        padding: 3rem 1rem;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .team-grid,
    .events-grid,
    .associations-grid,
    .timings-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   STATIC HEADER STYLES
   ====================================== */

.site-header {
    background: linear-gradient(135deg, #2d1b3d 0%, #4a2c5e 100%);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-header-left {
    flex: 0 0 auto;
    margin-right: 20px;
}

.site-header-left img {
    height: 50px;
    width: auto;
}

.site-header-center {
    flex: 1;
    text-align: center;
}

.church-branding {
    margin: 0;
}

.site-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.site-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: #ffd700;
}

.site-description {
    margin: 5px 0 0 0;
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.site-header-right {
    flex: 0 0 auto;
    margin-left: 20px;
}

.header-contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.header-phone {
    color: rgba(255, 255, 255, 0.9);
}

/* Navigation Menu */
.main-navigation {
    background: rgba(45, 27, 61, 0.95);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.main-navigation a:hover,
.main-navigation a:focus {
    background-color: #ffd700;
    color: #2d1b3d;
}

.main-navigation .current-menu-item > a {
    background-color: #ffd700;
    color: #2d1b3d;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header-content {
        flex-wrap: wrap;
        padding: 10px 20px;
    }

    .site-header-center {
        order: 1;
        flex-basis: 100%;
    }

    .site-header-left,
    .site-header-right {
        display: none;
    }

    .site-title {
        font-size: 20px;
    }

    .site-description {
        font-size: 11px;
    }

    .main-navigation ul {
        flex-direction: column;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .main-navigation {
        display: none;
    }

    .main-navigation.toggled {
        display: block;
    }
}

/* ======================================
   HERO SECTION STYLES
   ====================================== */

.hero-section {
    position: relative;
    background-attachment: fixed;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 27, 61, 0.5) 0%, rgba(74, 44, 94, 0.5) 100%);
    z-index: 1;
}

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

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin: 0 0 40px 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2d1b3d;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ======================================
   SECTION STYLES
   ====================================== */

.padding-section {
    padding: 80px 30px;
}

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

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2d1b3d;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

/* ======================================
   ABOUT SECTION
   ====================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: #2d1b3d;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #2d1b3d;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-weight: 600;
}

.read-more-btn:hover {
    background: #ffd700;
    color: #2d1b3d;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ======================================
   TEAM SECTION
   ====================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d1b3d 0%, #4a2c5e 100%);
    padding: 4px;
    overflow: hidden;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 20px;
    color: #2d1b3d;
    margin-bottom: 5px;
}

.team-role {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
}

/* ======================================
   EVENTS SECTION
   ====================================== */

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    background: linear-gradient(135deg, #2d1b3d 0%, #4a2c5e 100%);
    color: white;
    border-radius: 10px;
    padding: 15px;
    font-weight: 700;
}

.event-day {
    font-size: 28px;
}

.event-month {
    font-size: 14px;
}

.event-content h3 {
    margin: 0 0 10px 0;
    color: #2d1b3d;
}

.event-content p {
    margin: 10px 0;
    color: #666;
    font-size: 14px;
}

.read-more {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2d1b3d;
}

/* ======================================
   ASSOCIATIONS SECTION
   ====================================== */

.associations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.association-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.association-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #2d1b3d 0%, #4a2c5e 100%);
    box-shadow: 0 10px 30px rgba(45, 27, 61, 0.3);
}

.association-icon {
    font-size: 48px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.association-item:hover .association-icon {
    transform: scale(1.1);
}

.association-item h3 {
    margin: 0;
    color: #2d1b3d;
    transition: color 0.3s ease;
}

.association-item:hover h3 {
    color: #ffd700;
}

/* ======================================
   MASS TIMINGS SECTION
   ====================================== */

.mass-timings-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.mass-timings-table thead {
    background: linear-gradient(135deg, #2d1b3d 0%, #4a2c5e 100%);
    color: white;
}

.mass-timings-table th,
.mass-timings-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.mass-timings-table th {
    font-weight: 700;
    letter-spacing: 1px;
}

.mass-timings-table tbody tr:hover {
    background: #f9f9f9;
}

.mass-timings-table tbody tr:last-child td {
    border-bottom: none;
}

/* ======================================
   ANNOUNCEMENTS SECTION
   ====================================== */

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.announcement-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ffd700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.announcement-card h3 {
    color: #2d1b3d;
    margin-bottom: 10px;
}

.announcement-date {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.announcement-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .padding-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .team-grid,
    .events-grid,
    .associations-grid,
    .announcements-grid {
        grid-template-columns: 1fr;
    }

    .mass-timings-table th,
    .mass-timings-table td {
        padding: 12px;
        font-size: 14px;
    }
}