/* Emirsoy Nakliyat AI Writer — Frontend Styles */

/* ── Quick Answer box ── */
.quick-answer {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}
.quick-answer strong { color: #1e40af; }

/* ── Tour Grid ── */
.mbaw-tour-grid {
    margin: 28px 0;
}
.mbaw-tour-grid-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1e293b;
}
.mbaw-tour-grid-inner {
    display: grid;
    gap: 18px;
}

/* Desktop */
.mbaw-cols-desktop-1 .mbaw-tour-grid-inner { grid-template-columns: 1fr; }
.mbaw-cols-desktop-2 .mbaw-tour-grid-inner { grid-template-columns: repeat(2, 1fr); }
.mbaw-cols-desktop-3 .mbaw-tour-grid-inner { grid-template-columns: repeat(3, 1fr); }
.mbaw-cols-desktop-4 .mbaw-tour-grid-inner { grid-template-columns: repeat(4, 1fr); }

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
    .mbaw-cols-tablet-1 .mbaw-tour-grid-inner { grid-template-columns: 1fr !important; }
    .mbaw-cols-tablet-2 .mbaw-tour-grid-inner { grid-template-columns: repeat(2, 1fr) !important; }
    .mbaw-cols-tablet-3 .mbaw-tour-grid-inner { grid-template-columns: repeat(3, 1fr) !important; }
}

/* Mobile ≤ 600px */
@media (max-width: 600px) {
    .mbaw-cols-mobile-1 .mbaw-tour-grid-inner { grid-template-columns: 1fr !important; }
    .mbaw-cols-mobile-2 .mbaw-tour-grid-inner { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── FAQ Section ── */
.mbaw-faq-section {
    margin: 32px 0;
}
.mbaw-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: #f8fafc;
}
.mbaw-faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
    cursor: pointer;
}
.mbaw-faq-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* ── Tables ── */
.entry-content table,
.mbaw-article table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
    font-size: 14px;
}
.entry-content table th,
.entry-content table td,
.mbaw-article table th,
.mbaw-article table td {
    border: 1px solid #cbd5e1;
    padding: 10px 14px;
    text-align: left;
}
.entry-content table th,
.mbaw-article table th {
    background: #f1f5f9;
    font-weight: 700;
    color: #1e293b;
}
.entry-content table tr:nth-child(even),
.mbaw-article table tr:nth-child(even) {
    background: #f8fafc;
}
