/* Rederijdetail, /rederijen/<slug>/. Een HTML-boom voor alle breedtes. */

/* Hero: titel + rating naast elkaar op desktop, onder elkaar op mobiel */
.rd-hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}
.rd-titel { font-size: 76px; line-height: 1.08; margin-bottom: 28px; }

.rd-rating-wrap {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #fff;
    margin-bottom: 16px;
}
.rd-rating-cijfer { text-align: center; }
.rd-rating-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
}
.rd-rating-lbl {
    font-size: 11px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
}

/* Statsbalk: 5 kolommen op desktop */
.rd-usp-5 { grid-template-columns: repeat(5, 1fr); }

/* Bestemmingskaart in "vaart in"-sectie: hoger dan de standaardkaart */
.rd-dest-hoogte { height: 320px; }

/* FAQ-lijst iets smaller houden dan de volle sectiebreedte */
.rd-faq-wrap { max-width: 880px; }

/* .rd-titel krijgt zijn kleinere maat op tablet/telefoon al via de
   gedeelde regel ".dt-hero h1" in responsief.css (hogere specificiteit:
   element + klasse wint altijd van deze ene klasse hier). */
@media (max-width: 1024px) {
    .rd-usp-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
    .rd-hero-row { flex-direction: column; align-items: flex-start; gap: 12px; }
    .rd-rating-wrap { margin-bottom: 0; }
    .rd-rating-num { font-size: 34px; }
    .rd-usp-5 { grid-template-columns: repeat(2, 1fr); }
    .rd-dest-hoogte { height: 220px; }
}
