/* ============================================================
   tests.css — Page Tests rapides & Vaccination
   ============================================================ */


/* ── Intro split ────────────────────────────────────────── */
.tests-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 260px;
}

.tests-intro-block {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tests-intro-block:first-child {
    background: var(--primary);
    color: #fff;
}

.tests-intro-block:last-child {
    background: var(--primary-dark);
    color: #fff;
}

.tests-intro-block .eyebrow {
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: 10px;
}

.tests-intro-block h2 {
    font-family: 'MontserratBold', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    margin: 0 0 12px;
}

.tests-intro-block p {
    font-size: 14px;
    opacity: .9;
    line-height: 1.75;
    margin: 0;
    max-width: 440px;
}

.section-tag {
    display: inline-block;
    background: rgba(0,174,188,.1);
    color: var(--primary-dark);
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 11px;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'MontserratBold', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    color: #1a2a3a;
    margin: 0 0 10px;
}

.section-title span { color: var(--primary); }

.section-lead {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 0 48px;
}

/* ── Grille tests rapides ───────────────────────────────── */
.tests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.test-card {
    background: #fff;
    /*border: 1px solid #dce3ec;*/
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.test-card:hover {
	transform: scale(1.025);
	transform-origin: center center;
    box-shadow: 0 10px 28px rgba(0,0,0,.1);
}

.test-card-header {
    padding: 28px 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.test-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.test-card-header h3 {
    font-family: 'MontserratBold', sans-serif;
    font-size: 16px;
    color: #1a2a3a;
    margin: 0 0 4px;
}

.test-card-header .test-duration {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.test-card-body {
    padding: 0 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.test-card-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.test-card-divider {
    height: 1px;
    background: #f0f3f7;
    margin-top: auto;
}

.test-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.test-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #3a4a5a;
}

.test-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-family: 'MontserratBold', sans-serif;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.test-card-footer {
    padding: 16px 24px;
    border-top: 1px solid #f0f3f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.test-remboursement {
    font-size: 12px;
    font-family: 'MontserratSemiBold', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.test-rdv {
    font-size: 12px;
    font-family: 'MontserratSemiBold', sans-serif;
    padding: 6px 14px;
    border-radius: 50px;
    color: #fff;
    transition: opacity .2s;
}

.test-rdv:hover { opacity: .85; }

/* ── Saviez-vous callout (hero) ──────────────────────────── */
.hero-saviez-vous {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50px;
    padding: 10px 20px;
    margin-top: 24px;
    font-size: 14px;
    color: #fff;
    font-family: 'MontserratSemiBold', sans-serif;
}
.hero-saviez-vous i {
    font-size: 16px;
    opacity: .9;
    flex-shrink: 0;
}

/* ── Section Vaccination ────────────────────────────────── */
.vacc-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: start;
}

.vacc-intro p {
    font-size: 15px;
    color: #444;
    line-height: 1.85;
    margin-bottom: 18px;
}

/* Grille vaccins disponibles */
.vacc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.vacc-item {
    background: #fff;
    /*border: 1px solid #dce3ec;*/
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    /*box-shadow: 0 2px 8px rgba(0,0,0,.04);*/
	box-shadow: var(--shadow-light);
    /*box-shadow: 0 2px 8px rgba(0,0,0,.04);*/
    transition: border-color .2s, transform .2s;
}

.vacc-item:hover {
    border-color: var(--primary);
	transform: scale(1.025);
	transform-origin: center center;
	background: rgba(0,174,188,.04);
}

.vacc-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0,174,188,.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.vacc-item h4 {
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 13px;
    color: #1a2a3a;
    margin: 0 0 3px;
}

.vacc-item p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

/* Panneau latéral vaccination */
.vacc-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vacc-card {
    background: #fff;
    /*border: 1px solid #dce3ec;*/
    border-radius: 14px;
    padding: 26px;
    /*box-shadow: 0 2px 10px rgba(0,0,0,.05);*/
	box-shadow: var(--shadow);

}

.vacc-card-title {
    font-family: 'MontserratBold', sans-serif;
    font-size: 14px;
    color: #1a2a3a;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
}

.vacc-card-title i { color: var(--primary); }

.vacc-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 16px;
}

.vacc-card p:last-child { margin: 0; }

.vacc-checklist {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.vacc-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #3a4a5a;
    line-height: 1.5;
}

.vacc-checklist li i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Card Doctolib */
.vacc-doctolib {
    background: linear-gradient(135deg, #0596de, #0471ad);
    border: none;
    color: #fff;
    text-align: center;
    padding: 28px 24px;
}

.vacc-doctolib .vacc-card-title {
    color: #fff;
    justify-content: center;
}

.vacc-doctolib .vacc-card-title i { color: rgba(255,255,255,.8); }

.vacc-doctolib p { color: rgba(255,255,255,.9); text-align: center; }



/* ── Bandeau info ────────────────────────────────────────── */
.info-strip {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.info-strip i { font-size: 28px; opacity: .85; flex-shrink: 0; }
.info-strip p { margin: 0; font-size: 14px; line-height: 1.6; opacity: .95; }
.info-strip strong { font-family: 'MontserratBold', sans-serif; font-size: 15px; display: block; margin-bottom: 2px; }

/* Breadcrumb */
.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid #e5ecf2;
    padding: 10px 0;
    font-size: 13px;
    color: var(--gray);
}

.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; opacity: .5; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1200px) {
    .tests-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .vacc-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 700px) {
    .tests-intro { grid-template-columns: 1fr; }
    .tests-intro-block { padding: 36px 24px; }
}

@media (max-width: 650px) {
    .tests-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
    .vacc-grid { grid-template-columns: 1fr; }
}