/*
 Theme Name: Red Door Community Meetings
 Theme URI: https://meetings.reddoorrecoverynetwork.com
 Description: Community-based recovery meeting directory — AA, NA, Smart Recovery, Al-Anon, Celebrate Recovery
 Version: 1.1.0
 Author: Red Door Recovery Network
 Author URI: https://reddoorrecoverynetwork.com
 Text Domain: reddoor-meetings
*/

/* ─── CSS Variables ─── */
:root {
    --mt-primary: #0288D1;
    --mt-primary-dark: #01579B;
    --mt-primary-light: #E1F5FE;
    --mt-secondary: #C9A227;
    --mt-charcoal: #1F2933;
    --mt-text: #333;
    --mt-text-light: #666;
    --mt-bg: #f5f9fc;
    --mt-white: #fff;
    --mt-border: #E0E0E0;
    --mt-red: #B11226;
    --mt-green: #2E7D32;
    --mt-radius: 12px;
    --mt-shadow: 0 2px 12px rgba(0,0,0,0.08);
    --mt-shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --mt-aa: #1565C0;
    --mt-na: #7B1FA2;
    --mt-smart: #00796B;
    --mt-alanon: #E65100;
    --mt-cr: #2E7D32;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--mt-text); background: var(--mt-bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--mt-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--mt-primary-dark); }
img { max-width: 100%; height: auto; }

.mt-hero { background: linear-gradient(135deg, #01579B 0%, #0288D1 50%, #0277BD 100%); color: #fff; padding: 60px 20px 50px; text-align: center; position: relative; overflow: hidden; }
.mt-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><path d="M30 5 L45 30 L30 55 L15 30 Z" fill="%23ffffff" opacity="0.04"/><path d="M0 30 L15 55 L0 60 Z" fill="%23ffffff" opacity="0.02"/><path d="M60 30 L45 55 L60 60 Z" fill="%23ffffff" opacity="0.02"/></svg>') repeat; background-size: 60px 60px; z-index: 0; }
.mt-hero::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path d="M60 10 L80 60 L60 110 L40 60 Z" fill="%23ffffff" opacity="0.03"/></svg>') repeat; background-size: 120px 120px; z-index: 0; }
.mt-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.mt-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.5px; }
.mt-hero h1 span { color: var(--mt-secondary); }
.mt-hero p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 24px; line-height: 1.5; }
.mt-hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 24px; flex-wrap: wrap; }
.mt-hero-stat { text-align: center; }
.mt-hero-stat .num { font-size: 28px; font-weight: 800; color: var(--mt-secondary); display: block; }
.mt-hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

.mt-finder { max-width: 900px; margin: -30px auto 30px; padding: 0 20px; position: relative; z-index: 10; }
.mt-finder-card { background: var(--mt-white); border-radius: var(--mt-radius); box-shadow: var(--mt-shadow-hover); padding: 32px; }
.mt-finder-card h2 { text-align: center; font-size: 22px; margin-bottom: 20px; color: var(--mt-charcoal); }
.mt-finder-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.mt-finder-field { flex: 1; min-width: 160px; }
.mt-finder-field label { display: block; font-size: 13px; font-weight: 600; color: var(--mt-text-light); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.mt-finder-field select, .mt-finder-field input { width: 100%; padding: 12px 14px; border: 2px solid var(--mt-border); border-radius: 8px; font-size: 15px; font-family: inherit; color: var(--mt-text); background: var(--mt-white); transition: border-color 0.2s; appearance: none; -webkit-appearance: none; }
.mt-finder-field select { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path d="M1 1l5 5 5-5" stroke="%23666" stroke-width="2" fill="none"/></svg>'); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.mt-finder-field select:focus, .mt-finder-field input:focus { outline: none; border-color: var(--mt-primary); }
.mt-finder-btn { padding: 12px 32px; background: var(--mt-primary); color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.mt-finder-btn:hover { background: var(--mt-primary-dark); transform: translateY(-1px); }
.mt-geo-btn { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; padding: 8px 18px; background: var(--mt-primary-light); color: var(--mt-primary); border: 1px solid var(--mt-primary); border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.mt-geo-btn:hover { background: var(--mt-primary); color: #fff; }

.mt-type-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.mt-type-pill { padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; border: 2px solid; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
.mt-type-pill.all { border-color: var(--mt-charcoal); color: var(--mt-charcoal); }
.mt-type-pill.all.active, .mt-type-pill.all:hover { background: var(--mt-charcoal); color: #fff; }
.mt-type-pill.aa { border-color: var(--mt-aa); color: var(--mt-aa); }
.mt-type-pill.aa.active, .mt-type-pill.aa:hover { background: var(--mt-aa); color: #fff; }
.mt-type-pill.na { border-color: var(--mt-na); color: var(--mt-na); }
.mt-type-pill.na.active, .mt-type-pill.na:hover { background: var(--mt-na); color: #fff; }
.mt-type-pill.smart { border-color: var(--mt-smart); color: var(--mt-smart); }
.mt-type-pill.smart.active, .mt-type-pill.smart:hover { background: var(--mt-smart); color: #fff; }
.mt-type-pill.alanon { border-color: var(--mt-alanon); color: var(--mt-alanon); }
.mt-type-pill.alanon.active, .mt-type-pill.alanon:hover { background: var(--mt-alanon); color: #fff; }
.mt-type-pill.cr { border-color: var(--mt-cr); color: var(--mt-cr); }
.mt-type-pill.cr.active, .mt-type-pill.cr:hover { background: var(--mt-cr); color: #fff; }

.mt-types-section { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.mt-types-section h2 { text-align: center; font-size: 28px; margin-bottom: 8px; color: var(--mt-charcoal); }
.mt-types-section > p { text-align: center; color: var(--mt-text-light); max-width: 700px; margin: 0 auto 32px; font-size: 16px; }
.mt-types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.mt-type-card { background: var(--mt-white); border-radius: var(--mt-radius); box-shadow: var(--mt-shadow); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.mt-type-card:hover { transform: translateY(-3px); box-shadow: var(--mt-shadow-hover); }
.mt-type-card-header { padding: 20px 24px; color: #fff; display: flex; align-items: center; gap: 14px; }
.mt-type-card-header.aa { background: var(--mt-aa); }
.mt-type-card-header.na { background: var(--mt-na); }
.mt-type-card-header.smart { background: var(--mt-smart); }
.mt-type-card-header.alanon { background: var(--mt-alanon); }
.mt-type-card-header.cr { background: var(--mt-cr); }
.mt-type-card-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.mt-type-card-header h3 { font-size: 20px; font-weight: 700; margin: 0; line-height: 1.2; }
.mt-type-card-header h3 small { display: block; font-size: 13px; font-weight: 400; opacity: 0.8; margin-top: 2px; }
.mt-type-card-body { padding: 24px; }
.mt-type-card-body p { font-size: 14px; line-height: 1.7; color: var(--mt-text); margin-bottom: 16px; }
.mt-type-card-body h4 { font-size: 14px; font-weight: 700; color: var(--mt-charcoal); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.mt-type-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; padding: 8px 16px; border-radius: 6px; transition: all 0.2s; }
.mt-type-card-link:hover { transform: translateX(3px); }

.mt-results { max-width: 1200px; margin: 0 auto 40px; padding: 0 20px; }
.mt-results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.mt-results-header h2 { font-size: 24px; color: var(--mt-charcoal); }
.mt-results-count { font-size: 14px; color: var(--mt-primary-dark); background: var(--mt-primary-light); padding: 6px 14px; border-radius: 20px; font-weight: 600; }
.mt-no-results { text-align: center; padding: 60px 20px; background: var(--mt-white); border-radius: var(--mt-radius); box-shadow: var(--mt-shadow); }
.mt-no-results h3 { font-size: 20px; margin-bottom: 8px; color: var(--mt-charcoal); }
.mt-no-results p { color: var(--mt-text-light); font-size: 15px; }

.mt-meetings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 16px; }
.mt-meeting-card { background: var(--mt-white); border-radius: var(--mt-radius); box-shadow: var(--mt-shadow); padding: 20px; border-left: 4px solid var(--mt-primary); transition: transform 0.2s, box-shadow 0.2s; }
.mt-meeting-card:hover { transform: translateY(-2px); box-shadow: var(--mt-shadow-hover); }
.mt-meeting-card.aa { border-left-color: var(--mt-aa); }
.mt-meeting-card.na { border-left-color: var(--mt-na); }
.mt-meeting-card.smart { border-left-color: var(--mt-smart); }
.mt-meeting-card.alanon { border-left-color: var(--mt-alanon); }
.mt-meeting-card.cr { border-left-color: var(--mt-cr); }
.mt-meeting-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; gap: 10px; }
.mt-meeting-card h3 { font-size: 17px; font-weight: 700; color: var(--mt-charcoal); margin: 0; line-height: 1.3; }
.mt-org-badge { padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; color: #fff; white-space: nowrap; flex-shrink: 0; }
.mt-org-badge.aa { background: var(--mt-aa); }
.mt-org-badge.na { background: var(--mt-na); }
.mt-org-badge.smart { background: var(--mt-smart); }
.mt-org-badge.alanon { background: var(--mt-alanon); }
.mt-org-badge.cr { background: var(--mt-cr); }
.mt-meeting-details { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--mt-text); }
.mt-meeting-detail { display: flex; align-items: flex-start; gap: 8px; }
.mt-meeting-detail .icon { width: 18px; flex-shrink: 0; text-align: center; color: var(--mt-text-light); font-size: 14px; padding-top: 2px; }
.mt-meeting-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.mt-tag { padding: 2px 10px; border-radius: 10px; font-size: 11px; font-weight: 600; background: #f0f0f0; color: var(--mt-text-light); }
.mt-tag.open { background: #E8F5E9; color: #2E7D32; }
.mt-tag.closed { background: #FFF3E0; color: #E65100; }
.mt-tag.online { background: var(--mt-primary-light); color: var(--mt-primary); }
.mt-tag.hybrid { background: #F3E5F5; color: #7B1FA2; }

.mt-day-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.mt-day-pill { padding: 5px 12px; border-radius: 16px; font-size: 12px; font-weight: 600; border: 1px solid var(--mt-border); background: var(--mt-white); color: var(--mt-text); cursor: pointer; transition: all 0.2s; text-decoration: none; }
.mt-day-pill.active, .mt-day-pill:hover { background: var(--mt-primary); color: #fff; border-color: var(--mt-primary); }

.mt-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 30px; flex-wrap: wrap; }
.mt-page-link { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 600; border: 1px solid var(--mt-border); background: var(--mt-white); color: var(--mt-text); text-decoration: none; transition: all 0.2s; }
.mt-page-link:hover, .mt-page-link.active { background: var(--mt-primary); color: #fff; border-color: var(--mt-primary); }

.mt-state-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; max-width: 1200px; margin: 0 auto; padding: 20px; }
.mt-state-link { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: var(--mt-white); border-radius: 8px; border: 1px solid var(--mt-border); font-size: 14px; font-weight: 500; color: var(--mt-text); transition: all 0.2s; text-decoration: none; }
.mt-state-link:hover { border-color: var(--mt-primary); background: var(--mt-primary-light); color: var(--mt-primary); }
.mt-state-link .count { font-size: 12px; background: var(--mt-primary-light); padding: 2px 8px; border-radius: 10px; color: var(--mt-primary); }

.mt-content-layout { display: flex; gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.mt-sidebar { width: 280px; flex-shrink: 0; position: sticky; top: 20px; align-self: flex-start; }
.mt-sidebar-card { background: var(--mt-white); border-radius: var(--mt-radius); box-shadow: var(--mt-shadow); padding: 20px; margin-bottom: 16px; }
.mt-sidebar-card h3 { font-size: 16px; font-weight: 700; color: var(--mt-charcoal); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--mt-primary-light); }
.mt-sidebar-search { width: 100%; padding: 8px 12px; border: 1px solid var(--mt-border); border-radius: 6px; font-size: 13px; margin-bottom: 10px; }
.mt-sidebar-search:focus { outline: none; border-color: var(--mt-primary); }
.mt-sidebar-list { list-style: none; max-height: 500px; overflow-y: auto; }
.mt-sidebar-list li { margin-bottom: 2px; }
.mt-sidebar-list li a { display: flex; justify-content: space-between; align-items: center; padding: 7px 10px; border-radius: 6px; font-size: 13px; color: var(--mt-text); transition: all 0.15s; text-decoration: none; }
.mt-sidebar-list li a:hover, .mt-sidebar-list li a.active { background: var(--mt-primary-light); color: var(--mt-primary); }
.mt-sidebar-list li a .cnt { font-size: 11px; background: #f0f0f0; padding: 1px 7px; border-radius: 8px; color: var(--mt-text-light); }
.mt-sidebar-list li a.active .cnt, .mt-sidebar-list li a:hover .cnt { background: var(--mt-primary); color: #fff; }
.mt-main-content { flex: 1; min-width: 0; }

.mt-crisis-banner { background: var(--mt-red); color: #fff; text-align: center; padding: 8px 20px; font-size: 13px; }
.mt-crisis-banner a { color: var(--mt-secondary); font-weight: 700; }

.mt-footer { background: var(--mt-charcoal); color: rgba(255,255,255,0.7); padding: 40px 20px; text-align: center; font-size: 14px; }
.mt-footer a { color: var(--mt-secondary); }
.mt-footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.mt-footer-links a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.mt-footer-links a:hover { color: #fff; }

.mt-blog-hero { background: linear-gradient(135deg, #01579B 0%, #0288D1 100%); color: #fff; padding: 40px 20px; text-align: center; position: relative; overflow: hidden; }
.mt-blog-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><path d="M30 5 L45 30 L30 55 L15 30 Z" fill="%23ffffff" opacity="0.04"/></svg>') repeat; background-size: 60px 60px; }
.mt-blog-hero h1 { font-size: 32px; font-weight: 800; position: relative; z-index: 1; margin-bottom: 8px; }
.mt-blog-hero p { font-size: 16px; color: rgba(255,255,255,0.8); position: relative; z-index: 1; }

.mt-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; max-width: 1200px; margin: 30px auto; padding: 0 20px; }
.mt-blog-card { background: var(--mt-white); border-radius: var(--mt-radius); box-shadow: var(--mt-shadow); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; border-top: 3px solid var(--mt-primary); }
.mt-blog-card:hover { transform: translateY(-3px); box-shadow: var(--mt-shadow-hover); }
.mt-blog-card-body { padding: 24px; }
.mt-blog-card-cat { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.mt-blog-card-cat.aa { background: var(--mt-aa); }
.mt-blog-card-cat.na { background: var(--mt-na); }
.mt-blog-card-cat.smart { background: var(--mt-smart); }
.mt-blog-card-cat.alanon { background: var(--mt-alanon); }
.mt-blog-card-cat.cr { background: var(--mt-cr); }
.mt-blog-card-cat.general { background: var(--mt-primary); }
.mt-blog-card h2 { font-size: 18px; font-weight: 700; color: var(--mt-charcoal); margin-bottom: 10px; line-height: 1.3; }
.mt-blog-card h2 a { color: inherit; }
.mt-blog-card h2 a:hover { color: var(--mt-primary); }
.mt-blog-card .excerpt { font-size: 14px; color: var(--mt-text-light); line-height: 1.6; margin-bottom: 14px; }
.mt-blog-card .read-more { font-size: 14px; font-weight: 600; color: var(--mt-primary); }

.mt-single-post { max-width: 800px; margin: 30px auto; padding: 0 20px; }
.mt-single-post .post-content { background: var(--mt-white); border-radius: var(--mt-radius); box-shadow: var(--mt-shadow); padding: 40px; line-height: 1.8; font-size: 16px; }
.mt-single-post .post-content h2 { font-size: 24px; color: var(--mt-charcoal); margin: 30px 0 14px; padding-top: 10px; border-top: 1px solid var(--mt-border); }
.mt-single-post .post-content h3 { font-size: 20px; color: var(--mt-charcoal); margin: 24px 0 10px; }
.mt-single-post .post-content p { margin-bottom: 16px; }
.mt-single-post .post-content ul, .mt-single-post .post-content ol { margin: 0 0 16px 24px; }
.mt-single-post .post-content li { margin-bottom: 6px; }
.mt-single-post .post-content blockquote { border-left: 4px solid var(--mt-primary); padding: 16px 20px; margin: 20px 0; background: var(--mt-primary-light); border-radius: 0 8px 8px 0; font-style: italic; }
.mt-single-post .post-meta { font-size: 13px; color: var(--mt-text-light); margin-bottom: 20px; }

.mt-help-cta { background: linear-gradient(135deg, #01579B, #0288D1); color: #fff; padding: 30px; border-radius: var(--mt-radius); text-align: center; margin-top: 30px; position: relative; overflow: hidden; }
.mt-help-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><path d="M30 5 L45 30 L30 55 L15 30 Z" fill="%23ffffff" opacity="0.05"/></svg>') repeat; background-size: 60px; }
.mt-help-cta h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; position: relative; z-index: 1; }
.mt-help-cta p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 16px; position: relative; z-index: 1; }
.mt-help-cta a { display: inline-block; padding: 12px 28px; background: var(--mt-secondary); color: #fff; border-radius: 25px; font-weight: 700; font-size: 15px; position: relative; z-index: 1; transition: all 0.2s; }
.mt-help-cta a:hover { transform: translateY(-2px); background: #b8911f; color: #fff; }

@media (max-width: 768px) {
    .mt-hero { padding: 40px 16px 30px; }
    .mt-hero h1 { font-size: 26px; }
    .mt-hero p { font-size: 15px; }
    .mt-hero-stats { gap: 20px; }
    .mt-hero-stat .num { font-size: 22px; }
    .mt-finder-card { padding: 20px; }
    .mt-finder-row { flex-direction: column; }
    .mt-finder-field { min-width: 100%; }
    .mt-finder-btn { width: 100%; }
    .mt-meetings-grid { grid-template-columns: 1fr; }
    .mt-types-grid { grid-template-columns: 1fr; }
    .mt-state-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .mt-content-layout { flex-direction: column; }
    .mt-sidebar { width: 100%; position: static; }
    .mt-sidebar-list { max-height: 200px; }
    .mt-blog-grid { grid-template-columns: 1fr; }
    .mt-single-post .post-content { padding: 24px; }
    .rdrn-header-container { padding: 0 16px; }
    .rdrn-logo-text { font-size: 20px; }
    .rdrn-nav-menu { display: none; }
    .rdrn-mobile-toggle { display: flex; }
}

@media (max-width: 480px) {
    .mt-hero h1 { font-size: 22px; }
    .mt-type-card-header h3 { font-size: 17px; }
    .mt-meeting-card { padding: 16px; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }


/* ─── FAQ Accordion ─── */
.mt-faq-section { max-width: 900px; margin: 40px auto; padding: 0 20px 40px; }
.mt-faq-section h2 { text-align: center; font-size: 28px; color: #1F2933; margin-bottom: 30px; }
.mt-faq-list { display: flex; flex-direction: column; gap: 8px; }
.mt-faq-item { border: 1px solid #E0E0E0; border-radius: 10px; overflow: hidden; background: #fff; }
.mt-faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 18px 24px; background: none; border: none; cursor: pointer; font-size: 16px; font-weight: 600; color: #1F2933; text-align: left; transition: background 0.2s; }
.mt-faq-question:hover { background: #E1F5FE; }
.mt-faq-icon { font-size: 24px; font-weight: 300; color: #0288D1; transition: transform 0.3s; }
.mt-faq-item.open .mt-faq-icon { transform: rotate(45deg); }
.mt-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.mt-faq-item.open .mt-faq-answer { max-height: 300px; }
.mt-faq-answer p { padding: 0 24px 18px; color: #4A5568; line-height: 1.7; margin: 0; }
