/* ================================================
   MT Landing Pages — v1.0
   Eigen classes: mt-lp-* prefix
   ================================================ */

/* PILLS
================================================ */
.mt-lp-pills-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    overflow: hidden;
}

.mt-lp-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
}

.mt-lp-pills::-webkit-scrollbar { display: none; }

.mt-lp-pill {
    display: inline-block;
    white-space: nowrap;
    padding: 8px 18px;
    border-radius: 50px;
    border: 2px solid #e8d8ec;
    background: white;
    color: #4a3550;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.mt-lp-pill:hover,
.mt-lp-pill.active {
    background: #2d1a2e;
    color: white;
    border-color: #2d1a2e;
}

.mt-lp-pills-arrow {
    background: white;
    border: 2px solid #e8d8ec;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.mt-lp-pills-arrow:hover {
    background: #2d1a2e;
    color: white;
    border-color: #2d1a2e;
}
/* SEO Blokken
================================================ */
.mt-seo-blokken {
    padding: 40px 0;
}

.mt-seo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.mt-seo-blok h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d1a2e;
}

.mt-seo-blok p {
    font-size: 14px;
    line-height: 1.8;
    color: #7a6a80;
}
.mt-seo-blok a {
    font-weight: 700;
    color: #e87aaa;
    text-decoration: none;
}

.mt-seo-blok a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .mt-seo-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .mt-lp-pills-arrow {
        display: none;
    }
}