/* Outline button for CTA (white background, green border/text) */
.btn-outline {
    background: #66AF45;
    color: white;
}

.btn-outline:hover {
    background: #66AF45;
    color: white;
}

/* Import Google Fonts for elegant typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation */
.site-nav {
    background: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo .logo {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover {
    background-color: #f3f4f6;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-only {
    cursor: default !important;
    pointer-events: none;
}

.dropdown-only:hover {
    background-color: transparent !important;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.2s;
    pointer-events: auto;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0;
    transition: background-color 0.2s;
}

.dropdown-menu a:hover {
    background-color: #66AF45;
    color: white;
}

.dropdown-menu li:first-child a {
    border-radius: 8px 8px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 8px 8px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #374151;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .nav-links li {
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-links a {
        padding: 1rem;
        border-radius: 0;
        width: 100%;
        justify-content: space-between;
    }
    
    /* Ensure nav-content is positioned relative for absolute positioning */
    .nav-content {
        position: relative;
    }
    
    /* Mobile Dropdown Adjustments */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .dropdown-menu a:hover {
        background-color: #66AF45;
        color: white;
    }
    
    .dropdown-toggle {
        pointer-events: auto !important;
    }
    
    .dropdown-only {
        pointer-events: auto !important;
    }
    
    /* Hide desktop dropdown hover on mobile */
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* Course Registration Section */
.course-registration {
    background: #f8f9fa;
    border: 2px solid #66AF45;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.course-registration h2 {
    color: #66AF45;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.course-registration p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #6b7280;
}

.registration-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.registration-buttons .btn {
    min-width: 150px;
}

@media (max-width: 768px) {
    .course-registration {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .registration-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .registration-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #66AF45 0%, #66AF45 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fbbf24;
}

/* Registration Section */
.registration-section {
    padding: 3rem 0;
}

.registration-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.registration-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.registration-card h3 {
    margin-bottom: 1.5rem;
    color: #374151;
    font-size: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #66AF45;
    color: white;
}

.btn-primary:hover {
    background-color: #66AF45;
}

.btn-secondary {
    background-color: #66AF45;
    color: white;
}

.btn-secondary:hover {
    background-color: #66AF45;
}

.btn-donate {
    background-color: #f59e0b;
    color: white;
}

.btn-donate:hover {
    background-color: #d97706;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-section h2 {
    color: #374151;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #66AF45;
}

/* Posts */
.post-preview {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.post-preview:last-child {
    border-bottom: none;
}

.post-preview h3 a {
    color: #374151;
    text-decoration: none;
    font-size: 1.25rem;
}

.post-preview h3 a:hover {
    color: #66AF45;
}

.post-excerpt {
    color: #6b7280;
    margin: 0.5rem 0;
}

.post-meta {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Events */
.events-widget {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.event-date {
    text-align: center;
    background-color: #66AF45;
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    min-width: 60px;
}

.event-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
}

.events-credit {
    font-size: 0.875rem;
    color: #6b7280;
}

.events-credit a {
    color: #66AF45;
    text-decoration: none;
}

/* Footer */
.site-footer {
    background-color: #374151;
    color: #d1d5db;
    padding: 1.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-section a {
    color: #d1d5db !important;
    text-decoration: none !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.footer-section a:hover {
    color: white !important;
    background: transparent !important;
    text-decoration: none !important;
}

.footer-section a:visited {
    color: #d1d5db !important;
}

.footer-section a:visited:hover {
    color: white !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0;
}

.social-link {
    color: #d1d5db;
    text-decoration: none;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
}

.contact-section {
    flex: 2;
}

.social-section {
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.social-section h3 {
    text-align: right;
    margin-bottom: 0.5rem;
}

.sponsors p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sponsor-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    justify-content: center;
}

.sponsor-logo {
    height: 60px;
    width: auto;
    background: white;
    padding: 0.5rem;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-section {
        text-align: left;
    }
    
    .social-section h3 {
        text-align: left;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
}

/* Ghost Editor Support */
.kg-card {
    margin: 1.5rem 0;
}

.kg-image {
    max-width: 100%;
    height: auto;
}

/* Ghost Gallery Card - single gallery with multiple images */
.kg-gallery-card {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
}

.kg-gallery-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
}

.kg-gallery-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
}

.kg-gallery-image {
    margin: 0 0.5rem;
    max-width: 300px;
    flex: 1 1 auto;
    min-width: 200px;
}

.kg-gallery-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* Fix manually added image cards */
.kg-image-card,
.kg-card {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
}

.kg-image-card img,
.kg-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Fix any horizontally aligned images */
.kg-width-wide,
.kg-width-full {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: auto !important;
    right: auto !important;
    position: static !important;
}

.kg-bookmark-card {
    width: 100%;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.kg-bookmark-container {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.kg-bookmark-content {
    flex-grow: 1;
    padding: 1.25rem;
}

.kg-bookmark-title {
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
}

.kg-bookmark-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.kg-bookmark-thumbnail {
    min-width: 120px;
    max-height: 120px;
}

.kg-bookmark-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Page Styles */
.page-header {
    background: linear-gradient(135deg, #66AF45 0%, #66AF45 100%);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.page-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 3rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-feature-image {
    margin-top: 2rem;
}

.page-feature-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.mission-section {
    background-color: #f0fdf4;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid #66AF45;
}

.mission-section h2 {
    color: #065f46;
    margin-bottom: 1rem;
}

.about-content h2, .about-content h3 {
    color: #374151;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #66AF45;
    font-weight: bold;
}

/* Programs Page */
.programs-grid {
    display: grid;
    gap: 3rem;
}

.program-category {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.program-category h2 {
    color: #66AF45;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #66AF45;
}

.programs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.program-item {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.program-item h3 {
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.program-item p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.program-item ul {
    list-style: none;
    padding: 0;
}

.program-item li {
    color: #4b5563;
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.875rem;
}

.program-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #66AF45;
}

.registration-cta {
    background: linear-gradient(135deg, #66AF45 0%, #66AF45 100%);
    color: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.registration-cta h2 {
    margin-bottom: 1rem;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    min-width: 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-item p {
    color: #374151;
    margin: 0;
}

.contact-item a {
    text-decoration: none;
}

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

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.hours-table td:first-child {
    font-weight: 500;
    color: #374151;
}

.hours-table td:last-child {
    color: #6b7280;
    text-align: right;
}

.location-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.location-section h2 {
    color: #374151;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #66AF45;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-note {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .programs-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header h1,
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-description {
        font-size: 1.125rem;
    }
}

/* Class Tables Styling */
.classes-content {
    max-width: 100%;
}

.program-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.program-section h2 {
    color: #66AF45;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #66AF45;
}

.program-section p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.classes-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.classes-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.classes-table thead {
    background-color: #66AF45;
    color: white;
}

.classes-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.classes-table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.classes-table tr:last-child td {
    border-bottom: none;
}

.classes-table tr:hover {
    background-color: #f9fafb;
}

.classes-table tr.waitlist-row {
    background-color: #fef3f2;
}

.classes-table tr.waitlist-row:hover {
    background-color: #fee2e2;
}

/* Registration Buttons */
.btn-register {
    background-color: #66AF45;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-register:hover {
    background-color: #66AF45;
    color: white;
    text-decoration: none;
}

.btn-waitlist {
    background-color: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
    cursor: not-allowed;
}

/* Table responsive design */
@media (max-width: 1024px) {
    .classes-table th:nth-child(6),
    .classes-table td:nth-child(6),
    .classes-table th:nth-child(7),
    .classes-table td:nth-child(7) {
        display: none;
    }
}

@media (max-width: 768px) {
    .classes-table {
        font-size: 0.875rem;
    }
    
    .classes-table th,
    .classes-table td {
        padding: 0.5rem 0.375rem;
    }
    
    .classes-table th:nth-child(2),
    .classes-table td:nth-child(2) {
        min-width: 200px;
    }
    
    .btn-register,
    .btn-waitlist {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .program-section {
        padding: 1rem;
    }
    
    /* Stack table on mobile */
    .classes-table,
    .classes-table thead,
    .classes-table tbody,
    .classes-table th,
    .classes-table td,
    .classes-table tr {
        display: block;
    }
    
    .classes-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .classes-table tr {
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        margin-bottom: 1rem;
        padding: 1rem;
        background: white;
    }
    
    .classes-table td {
        border: none;
        position: relative;
        padding: 0.5rem 0;
        padding-left: 30%;
        margin-bottom: 0.5rem;
    }
    
    .classes-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 25%;
        font-weight: 600;
        color: #374151;
    }
    
    .classes-table td:last-child {
        margin-bottom: 0;
    }
}

/* Editor table support */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.entry-content table th {
    background-color: #66AF45;
    color: white;
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
}

.entry-content table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.entry-content table tr:last-child td {
    border-bottom: none;
}

.entry-content table tr:hover {
    background-color: #f9fafb;
}
/* Brand (logo + text) */
.brand {display:flex;align-items:center;gap:.75rem;text-decoration:none;}
.brand-mark img {height:60px;width:auto;display:block;}
.brand-text {display:flex;flex-direction:column;line-height:1.05;}
.brand-line {font-weight:700;font-family:'Inter',sans-serif;letter-spacing:.5px;}
.brand-line.line-1 {font-size:1.05rem;color:#222;}
.brand-line.line-2 {font-size:.85rem;font-weight:600;color:#66AF45;text-transform:uppercase;letter-spacing:1px;}
@media (max-width:640px){.brand-line.line-1{font-size:.95rem}.brand-line.line-2{font-size:.7rem}}
/* Full logo replacement */
.logo-full {height:70px;width:auto;display:block;}
@media (max-width:800px){.logo-full{height:54px}}
@media (max-width:520px){.logo-full{height:46px}}

/* Responsive button groups */

/* Responsive button groups */
/* Responsive registration cards */
@media (max-width: 1024px) {
    .registration-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .registration-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .registration-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .registration-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Required Koenig Editor CSS Classes */
.kg-width-wide {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 1200px;
    margin-left: calc(50% - 600px);
    margin-right: calc(50% - 600px);
}

.kg-width-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.kg-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.kg-embed-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.kg-card {
    margin: 1.5rem 0;
}

.kg-callout-card {
    background: #f8f9fa;
    border-left: 4px solid #66AF45;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
}

.kg-callout-emoji {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.kg-callout-text {
    margin: 0;
}

.kg-toggle-card {
    margin: 1.5rem 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.kg-toggle-heading {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    margin: 0;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
}

.kg-toggle-content {
    padding: 1rem 1.5rem;
    display: none;
}

.kg-toggle-content.kg-toggle-open {
    display: block;
}
