/* ═══════════════════════════════════════════
   Microphone Listing Page Styles
   ═══════════════════════════════════════════ */

   
/* ── Hero Banner ── */
.mic-hero-wrap      { aspect-ratio: 1821/402; width: 100%; position: relative; clip-path: inset(0 round 16px); }
.mic-hero-text      { display: flex; flex-direction: column; gap: 16px; max-width: 42rem; }

/* ── Product Image ── */
.mic-img-wrap       { height: 400px; }

/* ── Product Info Row ── */
.mic-info-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
}

.mic-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.mic-product-name {
    font-family: 'Radio Canada', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #000;
    margin: 0;
    text-align: left;
}

.mic-product-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.75);
    margin: 0;
}


/* ═══════════════════════════════════════════
   Mobile  (≤ 767px)
   ═══════════════════════════════════════════ */
@media (max-width: 767px) {
    .mic-hero-wrap          { clip-path: inset(0 round 16px); }
    .mic-hero-text          { gap: 10px; }
    .mic-hero-text h1       { font-size: 18px; line-height: 24px; }
    .mic-hero-text p        { font-size: 12px; line-height: 17px; }

    .mic-img-wrap           { height: 200px; }

    .mic-info-row           { flex-direction: column; gap: 12px; }
    .mic-product-name       { font-size: 20px; line-height: 26px; }
    .mic-product-desc       { font-size: 14px; line-height: 20px; }
    .btn-view               { width: 100%; }
}
