/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base responsive image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #ffffff;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Buttons */
.btn-primary {
    background: #1d1d1f;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #1d1d1f;
    border: 2px solid #1d1d1f;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1d1d1f;
    color: white;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: center;
    min-height: 500px;
}

.hero-left {
    text-align: left;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    margin-top: 0;
    letter-spacing: -0.02em;
}

.hero-text {
    margin-bottom: 32px;
}

.hero-text p {
    font-size: 18px;
    color: #6e6e73;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-image {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.surfers-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-right {
    display: flex;
    justify-content: center;
}

.workshops-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 420px;
}

.workshops-stack .workshop-card {
    transform: scale(1.02);
}

.workshop-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.workshop-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.workshop-date {
    font-size: 18px;
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.workshop-description {
    color: #6e6e73;
    margin-bottom: 24px;
}

.lead-form {
    text-align: left;
}

.lead-form h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notify-form input[type="email"] {
    padding: 12px 16px;
    border: 2px solid #e5e5e7;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.notify-form input[type="email"]:focus {
    outline: none;
    border-color: #1d1d1f;
}

/* Value Proposition */
.value-prop {
    padding: 50px 0;
    text-align: center;
}

.value-prop h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.value-prop p {
    font-size: 20px;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials {
    padding: 50px 0;
    background: #f5f5f7;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-card blockquote {
    font-style: normal;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.testimonial-card cite {
    font-size: 16px;
    color: #6e6e73;
    font-style: normal;
    font-weight: 500;
}

/* Quick Links */
.quick-links {
    padding: 50px 0;
}

.links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.link-card {
    background: white;
    border: 2px solid #e5e5e7;
    border-radius: 16px;
    padding: 40px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
}

.link-card:hover {
    border-color: #1d1d1f;
    transform: translateY(-4px);
}

.link-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.link-card p {
    color: #6e6e73;
    font-size: 16px;
}

/* Footer */
.footer {
    background: #1d1d1f;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #a1a1a6;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer p {
    color: #a1a1a6;
    font-size: 14px;
}

/* Page Headers */
.page-header {
    padding: 80px 0 40px;
    text-align: center;
    background: #f5f5f7;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 20px;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
}

/* Workshops Page Hero */
.workshops-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    text-align: center;
}

.workshops-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.workshops-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Content Sections */
.content-section {
    padding: 40px 0;
}

.content-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.content-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #6e6e73;
    margin-bottom: 24px;
}

/* Cards */
.card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.card p {
    margin-bottom: 24px;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e7;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1d1d1f;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Bio Cards */
.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

/* Team Grid Layout */
.team-grid {
    margin-top: 48px;
}

.team-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.team-row-bottom {
    display: flex;
    justify-content: center;
}

.team-row-bottom .bio-card {
    max-width: 500px;
}

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

.bio-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #e5e5e7;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e6e73;
    font-size: 14px;
}

.bio-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.bio-card .title {
    font-size: 18px;
    color: #6e6e73;
    margin-bottom: 24px;
}

.bio-card p {
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    /* Fix navigation logo on mobile */
    .nav-logo img {
        height: 32px !important;
        max-width: 120px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 36px;
        margin-top: 0;
    }
    
    .workshops-stack {
        max-width: 100%;
    }
    
    .workshops-stack .workshop-card {
        transform: scale(1);
    }
    
    .surfers-image {
        height: 200px;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
    }
    
    .workshop-card {
        padding: 24px;
    }
    
    .value-prop h2,
    .page-header h1 {
        font-size: 32px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Team grid responsive */
    .team-row-top {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .team-row-bottom .bio-card {
        max-width: 100%;
    }
    
    .bio-image {
        width: 150px;
        height: 150px;
    }
    
    /* Workshop sections on mobile */
    #workshops-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    
    /* Hide other workshop section on mobile if it becomes too crowded */
    #other-workshop-section {
        order: 3;
    }
}

/* 3-column layout adjustments */
#workshops-grid[style*="1fr 1fr 1fr"] .workshop-section h2 {
    font-size: 24px;
    line-height: 1.2;
}

/* Responsive handling for 3-column headers */
@media (max-width: 1024px) {
    #workshops-grid[style*="1fr 1fr 1fr"] .workshop-section h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    #workshops-grid[style*="1fr 1fr 1fr"] .workshop-section h2 {
        font-size: 28px; /* Back to larger size since we're stacked */
    }
    
    /* Workshops hero responsive */
    .workshops-hero-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .workshops-hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .workshops-hero-image {
        height: 250px;
    }
}

/* Contact Page Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-hero-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Contact page responsive */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .contact-hero-image {
        height: 250px;
        order: -1;
    }
}

/* Notification Bar */
.notification-bar {
    background: #f5f5f7;
    padding: 20px 0;
    border-top: 1px solid #e5e5e7;
    border-bottom: 1px solid #e5e5e7;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.notification-content p {
    margin: 0;
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.5;
}

.notification-btn {
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
}

/* Notification bar responsive */
@media (max-width: 768px) {
    .notification-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .notification-content p {
        font-size: 14px;
    }
    
    .notification-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Services Hero Section */
.services-hero {
    padding: 80px 0 60px;
    background: #f5f5f7;
}

.services-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    text-align: center;
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero-left {
    text-align: left;
}

.services-hero-left p {
    font-size: 20px;
    color: #6e6e73;
    line-height: 1.6;
}

.services-hero-right {
    text-align: center;
}

.services-logo-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Services hero responsive */
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .services-hero-left {
        text-align: center;
    }
    
    .services-logo-image {
        max-height: 200px;
    }
}

/* Services Three Column Layout */
.services-three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.service-card p {
    color: #6e6e73;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: #6e6e73;
}

.service-card ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.service-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    background: #f5f5f7;
}

/* Services three column responsive */
@media (max-width: 1024px) {
    .services-three-column {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-three-column {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-image {
        height: 120px;
    }
}

/* Workshop City Images */
.workshop-city-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin: 24px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Workshop city images responsive */
@media (max-width: 768px) {
    .workshop-city-image {
        height: 150px;
        margin: 16px 0;
    }
    
    /* Fix testimonial profile images on mobile */
    .testimonials-grid img {
        width: 50px !important;
        height: 50px !important;
        margin-right: 12px !important;
    }
    
    .testimonials-grid cite {
        font-size: 12px !important;
    }
    
    /* Workshop card images responsive */
    .workshop-card img {
        max-width: 100% !important;
        height: auto !important;
        min-height: 100px !important;
        object-fit: cover !important;
    }
    
    /* Service images responsive */
    .service-image,
    .services-logo-image {
        max-width: 100% !important;
        height: auto !important;
        min-height: 120px !important;
        object-fit: contain !important;
    }
    
    /* About and contact hero images */
    .about-hero-image,
    .contact-hero-image {
        max-width: 100% !important;
        height: auto !important;
        min-height: 200px !important;
        object-fit: cover !important;
    }
    
    /* All hero section images */
    .hero img,
    .workshops-hero-image {
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
}

/* Loading States and Skeleton Screens */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
}

.skeleton-title {
    height: 28px;
    border-radius: 4px;
    margin-bottom: 16px;
    width: 70%;
}

.skeleton-text {
    height: 16px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

.skeleton-text.long {
    width: 95%;
}

.skeleton-button {
    height: 44px;
    border-radius: 8px;
    width: 120px;
    margin-top: 8px;
}

.workshop-skeleton {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 350px;
}

.workshop-skeleton .skeleton-card {
    transform: scale(0.85);
    margin-bottom: 0;
}

.workshop-skeleton .skeleton-image {
    height: 120px;
    border-radius: 8px 8px 0 0;
    margin: -32px -32px 8px -32px;
}

.workshop-skeleton .skeleton-title {
    height: 18px;
    width: 50%;
    margin-bottom: 8px;
}

.workshop-skeleton .skeleton-text {
    height: 14px;
    margin-bottom: 4px;
}

.workshop-skeleton .skeleton-button {
    height: 32px;
    width: 80px;
    margin-top: 12px;
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e7;
    border-radius: 50%;
    border-top-color: #1d1d1f;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner.large {
    width: 40px;
    height: 40px;
    border-width: 4px;
}

/* Error states */
.error-state {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    text-align: center;
}

.error-state h4 {
    color: #c53030;
    margin-bottom: 8px;
    font-size: 16px;
}

.error-state p {
    color: #742a2a;
    margin-bottom: 12px;
    font-size: 14px;
}

.retry-button {
    background: #c53030;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.retry-button:hover {
    background: #9c2626;
}

/* No workshops card height matching */
#ny-no-workshops .card,
#la-no-workshops .card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#ny-no-workshops .card h3,
#la-no-workshops .card h3 {
    margin-bottom: 24px;
}

#ny-no-workshops .card p,
#la-no-workshops .card p {
    margin-bottom: 32px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Match workshop Sign Up button width to Notify Me button width on workshops page */
#ny-workshops-container .btn-primary,
#la-workshops-container .btn-primary,
#other-workshops-container .btn-primary {
    display: block !important;
    width: 100% !important;
    padding: 12px 24px !important;
    text-align: center !important;
}

/* About Hero Section */
.about-hero {
    padding: 80px 0 60px;
    background: #f5f5f7;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    text-align: center;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-left {
    text-align: left;
}

.about-hero-right {
    display: flex;
    justify-content: center;
}

.about-hero-text p {
    font-size: 18px;
    color: #6e6e73;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* About hero responsive */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .about-hero-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .about-hero-left {
        text-align: center;
    }
    
    .about-hero-image {
        height: 250px;
    }
}

/* 3-column workshop layout adjustments */
#workshops-grid.three-column-layout .workshop-section h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Responsive handling for 3-column headers */
@media (max-width: 1024px) {
    #workshops-grid.three-column-layout .workshop-section h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    #workshops-grid.three-column-layout .workshop-section h2 {
        font-size: 28px; /* Back to larger size since we're stacked */
    }
}