/* Scoped specialty-guide styles, namespaced under .specialty-guide so nothing leaks to the rest of
   the site. Standalone file (not in the Mix build) so changes need no compile. */

.specialty-guide {
    --specialty-guide-accent: #ff8000;
    --specialty-guide-accent-dark: #d66b00;
    --specialty-guide-accent-soft: #fff4e9;
    --specialty-guide-ink: #2b2b2b;
    --specialty-guide-muted: #6b7176;
    --specialty-guide-line: #e7e7e7;
    --specialty-guide-surface: #ffffff;
    --specialty-guide-surface-alt: #f7f6f4;
    --specialty-guide-radius: 14px;
    --specialty-guide-shadow: 0 10px 30px -18px rgba(0, 0, 0, .35);
    color: var(--specialty-guide-ink);
    font-family: Rubik, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.specialty-guide p { color: #3f4448; line-height: 1.65; }
.specialty-guide h2 { font-weight: 600; margin-bottom: .35em; }
.specialty-guide h3 { font-weight: 500; }
.specialty-guide section { scroll-margin-top: 90px; }

.specialty-guide-section-intro { max-width: 720px; }
.specialty-guide-section-intro h2 { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem); }

/* Buttons */
.specialty-guide-btn {
    display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px;
    padding: 15px 28px; border-radius: 10px; text-decoration: none; line-height: 1; transition: .18s ease;
}
.specialty-guide-btn i { font-size: 15px; }
.specialty-guide-btn--primary { background: var(--specialty-guide-accent); color: #fff; box-shadow: 0 8px 20px -8px rgba(255,128,0,.6); }
.specialty-guide-btn--primary:hover { background: var(--specialty-guide-accent-dark); color: #fff; transform: translateY(-1px); text-decoration: none; }
.specialty-guide-btn--ghost { background: #fff; color: var(--specialty-guide-ink); border: 1.5px solid var(--specialty-guide-line); }
.specialty-guide-btn--ghost:hover { border-color: var(--specialty-guide-accent); color: var(--specialty-guide-accent-dark); text-decoration: none; }
.specialty-guide-btn--light { background: #fff; color: var(--specialty-guide-ink); }
.specialty-guide-btn--light:hover { background: var(--specialty-guide-accent); color: #fff; text-decoration: none; }

/* Hero */
.specialty-guide-hero { background:
        radial-gradient(120% 120% at 100% 0%, var(--specialty-guide-accent-soft) 0%, rgba(255,244,233,0) 55%),
        var(--specialty-guide-surface);
    border-bottom: 1px solid var(--specialty-guide-line); padding: 56px 0 48px; }
.specialty-guide-hero h1 { font-weight: 700; font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); line-height: 1.08; margin: 0 0 .4em; }
.specialty-guide-hero__lead { font-size: 1.12rem; color: #40464a; max-width: 34em; }
.specialty-guide-hero__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 28px; }
.specialty-guide-hero__note { color: var(--specialty-guide-muted); font-size: 14px; }
.specialty-guide-hero__note i { color: #57a05a; margin-right: 5px; }
.specialty-guide-hero__media { position: relative; }
.specialty-guide-hero__media img { width: 100%; height: 100%; min-height: 260px; max-height: 420px; object-fit: cover;
    border-radius: 18px; box-shadow: var(--specialty-guide-shadow); }
.specialty-guide-chips { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.specialty-guide-chips li { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--specialty-guide-line);
    border-radius: 999px; padding: 8px 15px; font-size: 14px; font-weight: 500; box-shadow: 0 2px 8px -6px rgba(0,0,0,.25); }
.specialty-guide-chips i { color: var(--specialty-guide-accent); }

/* Generic section rhythm */
.specialty-guide-band { padding: 56px 0; }
.specialty-guide-band--alt { background: var(--specialty-guide-surface-alt); }

/* Cards */
.specialty-guide-cards { display: grid; gap: 22px; margin-top: 34px; }
.specialty-guide-cards--2 { grid-template-columns: repeat(2, 1fr); }
.specialty-guide-cards--3 { grid-template-columns: repeat(3, 1fr); }
.specialty-guide-cards--tiles { grid-template-columns: repeat(3, 1fr); }
.specialty-guide-card { background: #fff; border: 1px solid var(--specialty-guide-line); border-radius: var(--specialty-guide-radius);
    padding: 26px; box-shadow: 0 6px 22px -18px rgba(0,0,0,.3); }
.specialty-guide-card h3, .specialty-guide-card h4 { margin-top: 0; }

.specialty-guide-card--fit { border-top: 4px solid var(--specialty-guide-accent); }
.specialty-guide-card--alt-fit { border-top: 4px solid #d4d7da; }
.specialty-guide-list { list-style: none; padding: 0; margin: 14px 0 0; }
.specialty-guide-list li { position: relative; padding: 7px 0 7px 30px; color: #3f4448; line-height: 1.5; }
.specialty-guide-list li i { position: absolute; left: 0; top: 10px; color: var(--specialty-guide-accent); }

/* Detour block: pointer for visitors looking for something else */
.specialty-guide-crosslink { margin-top: 30px; display: flex; gap: 16px; align-items: flex-start;
    background: var(--specialty-guide-surface-alt); border: 1px solid var(--specialty-guide-line); border-radius: var(--specialty-guide-radius); padding: 22px 26px; }
.specialty-guide-crosslink__ico { color: var(--specialty-guide-accent); font-size: 20px; flex-shrink: 0; margin-top: 3px; }
.specialty-guide-crosslink h3 { margin: 0 0 6px; font-size: 1.08rem; font-weight: 600; }
.specialty-guide-crosslink p { margin: 0 0 10px; }
.specialty-guide-crosslink a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--specialty-guide-accent-dark); text-decoration: none; }
.specialty-guide-crosslink a i { color: var(--specialty-guide-accent); transition: transform .15s ease; }
.specialty-guide-crosslink a:hover { color: var(--specialty-guide-accent); text-decoration: none; }
.specialty-guide-crosslink a:hover i { transform: translateX(3px); }

/* Tiles */
.specialty-guide-tile { background: #fff; border: 1px solid var(--specialty-guide-line); border-radius: var(--specialty-guide-radius); padding: 24px; height: 100%; }
.specialty-guide-tile__ico { width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
    background: var(--specialty-guide-accent-soft); color: var(--specialty-guide-accent-dark); font-size: 19px; margin-bottom: 14px; }
.specialty-guide-tile h3 { font-size: 1.08rem; font-weight: 600; margin: 0 0 6px; }
.specialty-guide-tile p { margin: 0; font-size: .96rem; }

/* Steps */
.specialty-guide-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.specialty-guide-step { text-align: center; }
.specialty-guide-step__ico { position: relative; width: 84px; height: 84px; border-radius: 50%;
    background: var(--specialty-guide-accent-soft); color: var(--specialty-guide-accent-dark); font-size: 34px;
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.specialty-guide-step__num { position: absolute; top: -2px; right: -2px; width: 28px; height: 28px; border-radius: 50%;
    background: var(--specialty-guide-accent); color: #fff; font-weight: 700; font-size: 14px;
    display: inline-flex; align-items: center; justify-content: center; border: 3px solid var(--specialty-guide-surface); }
.specialty-guide-step h3 { font-size: 1.15rem; font-weight: 600; margin: 0 0 8px; }
.specialty-guide-step p { margin: 0 auto; max-width: 24em; }

/* FAQ */
.specialty-guide-faq { margin-top: 30px; border-top: 1px solid var(--specialty-guide-line); }
.specialty-guide-faq__item { border-bottom: 1px solid var(--specialty-guide-line); }
.specialty-guide-faq__item summary { list-style: none; cursor: pointer; padding: 20px 44px 20px 4px; position: relative;
    font-weight: 500; font-size: 1.08rem; color: var(--specialty-guide-ink); }
.specialty-guide-faq__item summary::-webkit-details-marker { display: none; }
.specialty-guide-faq__item summary::after { content: "\002B"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    width: 28px; height: 28px; border-radius: 50%; background: var(--specialty-guide-accent-soft); color: var(--specialty-guide-accent-dark);
    display: inline-flex; align-items: center; justify-content: center; font-weight: 600; transition: .2s ease; }
.specialty-guide-faq__item[open] summary::after { content: "\2212"; background: var(--specialty-guide-accent); color: #fff; }
.specialty-guide-faq__item summary:hover { color: var(--specialty-guide-accent-dark); }
.specialty-guide-faq__answer { padding: 0 44px 22px 4px; }
.specialty-guide-faq__answer p { margin: 0; }
.specialty-guide-faq__group { font-size: 1.05rem; font-weight: 600; color: var(--specialty-guide-accent-dark); margin: 30px 0 2px; }
.specialty-guide-faq__group:first-child { margin-top: 22px; }

/* Slot-CTA */
.specialty-guide-final { background: var(--specialty-guide-surface); padding: 64px 0; text-align: center; }
.specialty-guide-final h2 { color: var(--specialty-guide-ink); font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.3rem); font-weight: 700; margin: 0 0 .35em; }
.specialty-guide-final p { color: #4a4640; max-width: 40em; margin: 0 auto 30px; }
.specialty-guide-final .specialty-guide-chips { justify-content: center; margin-top: 28px; }

/* "Meer weten": compact list of deeper-dive links (not cards) */
.specialty-guide-readalso { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--specialty-guide-line); }
.specialty-guide-readalso__label { font-size: 1.05rem; font-weight: 600; color: var(--specialty-guide-ink); margin: 0 0 10px; }
.specialty-guide-readalso ul { list-style: none; padding: 0; margin: 0; }
.specialty-guide-readalso li { border-bottom: 1px solid #ededed; }
.specialty-guide-readalso li:first-child { border-top: 1px solid #ededed; }
.specialty-guide-readalso a { display: flex; align-items: center; gap: 13px; padding: 13px 10px; font-weight: 500;
    font-size: 1.04rem; color: var(--specialty-guide-ink); text-decoration: none;
    transition: color .15s ease, background .15s ease, padding-left .15s ease; }
.specialty-guide-readalso a i { color: var(--specialty-guide-accent); font-size: 14px; transition: transform .15s ease; }
.specialty-guide-readalso a:hover { color: var(--specialty-guide-accent-dark); background: var(--specialty-guide-accent-soft); padding-left: 16px; text-decoration: none; }
.specialty-guide-readalso a:hover i { transform: translateX(4px); }

@media (max-width: 991px) {
    .specialty-guide-hero__media { margin-top: 32px; }
    .specialty-guide-cards--3, .specialty-guide-cards--tiles, .specialty-guide-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .specialty-guide-hero { padding: 40px 0 36px; }
    .specialty-guide-band { padding: 42px 0; }
    .specialty-guide-cards--2, .specialty-guide-cards--3, .specialty-guide-cards--tiles, .specialty-guide-steps { grid-template-columns: 1fr; }
}
