/* ============================================
   AESCULAPIUS THEME CSS - Ultra Minimal
   Target: < 8KB total
   ============================================ */

/* Header */
.aesc-header {
    position: relative;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.aesc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}
.aesc-logo img {
    max-height: 50px;
    width: auto;
}
.aesc-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}
.aesc-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.aesc-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}
.aesc-menu a {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    position: relative;
}
.aesc-menu a:hover {
    color: #c9a96e;
}
.aesc-menu .current-menu-item a {
    color: #c9a96e;
}
.aesc-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.aesc-header-phone {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}
.aesc-header-cta {
    padding: 12px 24px;
    background: #c9a96e;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: background 0.2s;
}
.aesc-header-cta:hover {
    background: #b8985d;
}
.aesc-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.aesc-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a2e;
    transition: transform 0.2s;
}

/* Sticky Header */
.aesc-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: aesc-slide-down 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
@keyframes aesc-slide-down {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Footer */
.aesc-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 80px 0 40px;
}
.aesc-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}
.aesc-footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.aesc-footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.aesc-footer-menu a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.aesc-footer-menu a:hover {
    color: #c9a96e;
}
.aesc-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
}
.aesc-footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 8px;
}
.aesc-footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.aesc-footer-col a:hover {
    color: #c9a96e;
}
.aesc-social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.aesc-social-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.aesc-social-links a:hover {
    color: #c9a96e;
}
.aesc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}
.aesc-footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Content */
.aesc-content {
    min-height: 60vh;
}
.aesc-page-wrap,
.aesc-single-wrap {
    padding: 80px 0;
}
.aesc-page-title,
.aesc-single-title,
.aesc-archive-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.aesc-page-content,
.aesc-single-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}
.aesc-page-content p,
.aesc-single-content p {
    margin-bottom: 24px;
}
.aesc-page-content h2,
.aesc-single-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 48px 0 24px;
    line-height: 1.3;
}
.aesc-page-content h3,
.aesc-single-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 36px 0 20px;
}
.aesc-page-content img,
.aesc-single-content img {
    border-radius: 8px;
    margin: 24px 0;
}

/* Blog Cards */
.aesc-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 60px 0;
}
.aesc-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.aesc-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.aesc-post-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.aesc-post-body {
    padding: 24px;
}
.aesc-post-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}
.aesc-post-title a {
    color: #1a1a2e;
}
.aesc-post-title a:hover {
    color: #c9a96e;
}
.aesc-post-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}
.aesc-post-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Single Post */
.aesc-single-thumb img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
}
.aesc-single-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: #666;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}
.aesc-author-bio {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: #f8f8f8;
    border-radius: 8px;
    margin-top: 48px;
}
.aesc-author-bio img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}
.aesc-author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.aesc-author-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.aesc-related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.aesc-related-posts h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}
.aesc-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.aesc-related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}
.aesc-related-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

/* Breadcrumb */
.aesc-breadcrumb {
    background: #f8f8f8;
    padding: 16px 0;
    font-size: 13px;
}
.aesc-breadcrumb ol {
    display: flex;
    gap: 8px;
    align-items: center;
}
.aesc-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #999;
}
.aesc-breadcrumb a {
    color: #666;
}
.aesc-breadcrumb a:hover {
    color: #c9a96e;
}
.aesc-breadcrumb .current {
    color: #999;
}

/* Archive Header */
.aesc-archive-header {
    background: #1a1a2e;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}
.aesc-archive-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.aesc-archive-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* 404 */
.aesc-404 {
    text-align: center;
    padding: 120px 0;
}
.aesc-404 h1 {
    font-size: 120px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 16px;
}
.aesc-404 h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.aesc-404 p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

/* Buttons */
.aesc-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}
.aesc-btn-primary {
    background: #c9a96e;
    color: #fff;
}
.aesc-btn-primary:hover {
    background: #b8985d;
}
.aesc-btn-secondary {
    background: #1a1a2e;
    color: #fff;
}
.aesc-btn-secondary:hover {
    background: #2a2a4e;
}

/* Sticky CTA */
.aesc-sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    animation: aesc-fade-up 0.4s ease;
}
@keyframes aesc-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.aesc-sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: var(--cta-color, #c9a96e);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}
.aesc-sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* Popup */
.aesc-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aesc-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}
.aesc-popup-content {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: aesc-popup-in 0.3s ease;
}
@keyframes aesc-popup-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.aesc-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .aesc-posts-grid,
    .aesc-related-grid,
    .aesc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .aesc-header-inner {
        height: 70px;
    }
    .aesc-menu {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .aesc-posts-grid,
    .aesc-related-grid,
    .aesc-footer-grid {
        grid-template-columns: 1fr;
    }
    .aesc-header-inner {
        height: 60px;
    }
    .aesc-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .aesc-nav.active {
        display: block;
    }
    .aesc-menu {
        flex-direction: column;
        gap: 16px;
    }
    .aesc-mobile-toggle {
        display: flex;
    }
    .aesc-header-actions {
        display: none;
    }
    .aesc-page-title,
    .aesc-single-title,
    .aesc-archive-title {
        font-size: 32px;
    }
    .aesc-single-thumb img {
        height: 300px;
    }
    .aesc-404 h1 {
        font-size: 80px;
    }
    .aesc-sticky-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }
    .aesc-sticky-cta-btn {
        text-align: center;
    }
}

/* WooCommerce */
.aesc-woocommerce-wrap {
    padding: 60px 0;
}

/* Widget Styles */
.widget {
    margin-bottom: 40px;
}
.widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #c9a96e;
}
.aesc-widget-treatments {
    list-style: none;
    padding: 0;
}
.aesc-widget-treatments li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.aesc-widget-treatments a {
    color: #333;
    font-weight: 500;
}
.aesc-widget-treatments a:hover {
    color: #c9a96e;
}
.aesc-widget-price {
    font-size: 14px;
    color: #c9a96e;
    font-weight: 600;
}
.aesc-widget-providers {
    display: grid;
    gap: 20px;
}
.aesc-widget-provider {
    display: flex;
    gap: 16px;
    align-items: center;
}
.aesc-widget-provider img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.aesc-widget-provider h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.aesc-widget-provider h5 a {
    color: #1a1a2e;
}
.aesc-widget-provider p {
    font-size: 13px;
    color: #666;
}
.aesc-widget-testimonials {
    display: grid;
    gap: 24px;
}
.aesc-widget-testimonial {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}
.aesc-testimonial-rating {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 8px;
}
.aesc-testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
    font-style: italic;
}
.aesc-testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}
.aesc-verified {
    font-size: 12px;
    color: #28a745;
    margin-left: 8px;
}
.aesc-widget-galleries {
    display: grid;
    gap: 16px;
}
.aesc-ba-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.aesc-ba-mini img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}
.aesc-gallery-treatment {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}
.aesc-widget-contact p {
    margin-bottom: 12px;
    font-size: 14px;
}
.aesc-widget-contact strong {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.aesc-widget-hours {
    list-style: none;
    padding: 0;
}
.aesc-widget-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.aesc-day {
    font-weight: 500;
    color: #1a1a2e;
}
.aesc-hours {
    color: #666;
}

/* Dark Mode Toggle */
.aesc-dark-toggle {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.aesc-dark-toggle:hover {
    transform: scale(1.1);
}
.aesc-dark-mode .aesc-dark-toggle .aesc-dark-icon {
    display: none;
}
.aesc-dark-mode .aesc-dark-toggle .aesc-light-icon {
    display: block;
}
.aesc-dark-toggle .aesc-light-icon {
    display: none;
}

/* Before/After Slider */
.aesc-before-after {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 40px 0;
}
.aesc-ba-images {
    position: relative;
    width: 100%;
    height: 500px;
}
.aesc-ba-before,
.aesc-ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.aesc-ba-before img,
.aesc-ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aesc-ba-before {
    z-index: 2;
    width: 50%;
}
.aesc-ba-after {
    z-index: 1;
}
.aesc-ba-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}
.aesc-ba-before .aesc-ba-label {
    left: 20px;
}
.aesc-ba-after .aesc-ba-label {
    right: 20px;
}
.aesc-ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #c9a96e;
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}
.aesc-ba-handle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #c9a96e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.aesc-ba-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    padding: 24px;
    background: #f8f8f8;
    border-radius: 8px;
}
.aesc-ba-detail {
    text-align: center;
}
.aesc-ba-detail .aesc-ba-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 4px;
    position: static;
    background: none;
    color: #666;
    padding: 0;
}
.aesc-ba-detail .aesc-ba-value {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
}
.aesc-ba-consent {
    text-align: center;
    color: #28a745;
    font-size: 14px;
    font-weight: 500;
}

/* Blog List Template */
.aesc-blog-list-wrap {
    padding: 60px 0;
}
.aesc-blog-list {
    display: grid;
    gap: 40px;
}
.aesc-blog-list-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}
.aesc-blog-list-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
.aesc-blog-list-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}
.aesc-blog-list-cat a {
    color: #c9a96e;
    font-weight: 500;
}
.aesc-blog-list-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}
.aesc-blog-list-title a {
    color: #1a1a2e;
}
.aesc-blog-list-title a:hover {
    color: #c9a96e;
}
.aesc-blog-list-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}
.aesc-blog-list-readmore {
    font-size: 14px;
    font-weight: 600;
    color: #c9a96e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.aesc-blog-list-readmore:hover {
    color: #b8985d;
}

/* Treatment Grid */
.aesc-treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 60px 0;
}
.aesc-treatment-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.aesc-treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.aesc-treatment-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.aesc-treatment-body {
    padding: 24px;
}
.aesc-treatment-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
.aesc-treatment-card-title a {
    color: #1a1a2e;
}
.aesc-treatment-card-title a:hover {
    color: #c9a96e;
}
.aesc-treatment-card-price {
    font-size: 18px;
    font-weight: 600;
    color: #c9a96e;
    margin-bottom: 12px;
}
.aesc-treatment-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}
.aesc-btn-small {
    padding: 10px 20px;
    font-size: 12px;
}
.aesc-btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* Provider Grid */
.aesc-provider-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 40px 0;
}
.aesc-provider-card {
    text-align: center;
}
.aesc-provider-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}
.aesc-provider-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}
.aesc-provider-card h3 a {
    color: #1a1a2e;
}
.aesc-provider-card p {
    font-size: 14px;
    color: #666;
}

/* Location Page */
.aesc-location-wrap {
    padding: 60px 0;
}
.aesc-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.aesc-location-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: #1a1a2e;
}
.aesc-location-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}
.aesc-location-map iframe,
.aesc-map-embed iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: none;
}
.aesc-location-providers,
.aesc-location-treatments {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.aesc-location-providers h2,
.aesc-location-treatments h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
}

/* Comparison Table */
.aesc-comparison-wrap {
    padding: 60px 0;
}
.aesc-comparison-table-wrap {
    overflow-x: auto;
    margin: 40px 0;
}
.aesc-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.aesc-comparison-table th,
.aesc-comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.aesc-comparison-table th {
    font-weight: 600;
    color: #1a1a2e;
    background: #f8f8f8;
}
.aesc-comparison-table th:first-child,
.aesc-comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1a1a2e;
}
.aesc-comparison-table th img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.aesc-comparison-table th a {
    font-size: 16px;
    color: #1a1a2e;
}
.aesc-comparison-table .aesc-comparison-cta td {
    padding-top: 32px;
    border-bottom: none;
}

/* Landing Page */
.aesc-landing-page {
    padding: 0;
    margin: 0;
}
.aesc-landing-wrap {
    min-height: 100vh;
}

/* Responsive */
@media (max-width: 1024px) {
    .aesc-treatment-grid,
    .aesc-provider-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .aesc-location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .aesc-blog-list-item {
        grid-template-columns: 1fr;
    }
    .aesc-ba-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .aesc-treatment-grid,
    .aesc-provider-grid {
        grid-template-columns: 1fr;
    }
    .aesc-ba-images {
        height: 300px;
    }
    .aesc-ba-details {
        grid-template-columns: 1fr;
    }
    .aesc-comparison-table th img {
        width: 60px;
        height: 60px;
    }
    .aesc-comparison-table th,
    .aesc-comparison-table td {
        padding: 12px;
        font-size: 13px;
    }
}
