.ds-locatie-spellen-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.ds-locatie-spel-card {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
    gap: 70px;
    align-items: start;
    background: #fafafa;
    border: 1px solid #dddddd;
    border-radius: 6px;
    padding: 20px;
    transition: border-color 0.2s ease;
}

.ds-locatie-spel-card:hover {
    border-color: #e5347b;
}

.ds-locatie-spel-card[hidden] {
    display: none !important;
}

.ds-locatie-spel-card__media {
    min-width: 0;
}

.ds-locatie-spel-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
}

.ds-locatie-spel-card__included {
    margin-top: 20px;
}

.ds-locatie-spel-card__included-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    list-style: none;
    color: #1b1f29;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.18;
    transition: color 0.2s ease;
}

.ds-locatie-spel-card__included-summary::-webkit-details-marker {
    display: none;
}

.ds-locatie-spel-card__included-summary::marker {
    content: '';
}

.ds-locatie-spel-card__included-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    background: #1b1f29;
    color: #ffffff;
    position: relative;
    transition: background-color 0.2s ease;
}

.ds-locatie-spel-card__included-icon::before,
.ds-locatie-spel-card__included-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.ds-locatie-spel-card__included-icon::after {
    width: 2px;
    height: 12px;
}

.ds-locatie-spel-card__included-summary:hover {
    color: #e5347b;
}

.ds-locatie-spel-card__included-summary:hover .ds-locatie-spel-card__included-icon,
.ds-locatie-spel-card__included[open] .ds-locatie-spel-card__included-icon {
    background: #e5347b;
}

.ds-locatie-spel-card__included-summary:focus {
    outline: none;
}

.ds-locatie-spel-card__included-summary:focus-visible {
    color: #e5347b;
    outline: 2px solid rgba(229, 52, 123, 0.35);
    outline-offset: 4px;
}

.ds-locatie-spel-card__included[open] .ds-locatie-spel-card__included-icon::after {
    display: none;
}

.ds-locatie-spel-card__included-content {
    margin-top: 40px;
    color: #1b1f29;
    font-size: 16px;
    line-height: 1.65;
}

.ds-locatie-spel-card__included-content h1,
.ds-locatie-spel-card__included-content h2,
.ds-locatie-spel-card__included-content h3,
.ds-locatie-spel-card__included-content h4 {
    margin: 0 0 18px;
    color: #1b1f29;
    font-size: 24px;
    line-height: 1.22;
    letter-spacing: 0;
}

.ds-locatie-spel-card__included-content p {
    margin: 0 0 18px;
}

.ds-locatie-spel-card__included-content ul,
.ds-locatie-spel-card__included-content ol {
    margin: 0 0 22px 22px;
    padding: 0;
}

.ds-locatie-spel-card__included-content li {
    margin: 0 0 10px;
}

.ds-locatie-spel-card__body {
    min-width: 0;
}

.ds-locatie-spel-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 28px;
    margin: 0 0 16px;
    color: #30333a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.ds-locatie-spel-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.ds-locatie-spel-card__meta-item .fontawesome-icon {
    float: none;
    margin: 0;
    color: #e5347b;
    font-size: 18px;
    line-height: 1;
}

.ds-locatie-spel-card__title {
    margin: 8px 0 22px;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0;
}

.ds-locatie-spel-card__description {
    font-size: 16px;
    line-height: 1.72;
}

.ds-locatie-spel-card__description p {
    margin: 0 0 20px;
}

.ds-locatie-spel-card__host-choice {
    display: grid;
    grid-template-columns: minmax(100px, auto) minmax(220px, 1fr) minmax(220px, 1.1fr);
    align-items: center;
    gap: 22px;
    margin: 26px 0 28px;
    padding: 20px 24px;
    border: 1px solid #e5347b;
    border-radius: 6px;
    background: #ffffff;
}

.ds-locatie-spel-card__host-choice-label {
    color: #1b1f29;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.ds-locatie-spel-card__host-choice-options {
    display: flex;
    gap: 0;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dddddd;
    border-radius: 6px;
    background: #e5347b;
}

.ds-locatie-spel-card__host-choice-button {
    appearance: none;
    -webkit-appearance: none;
    flex: 1 1 0;
    min-height: 58px;
    margin: 0;
    padding: 12px 18px;
    border: 0;
    background: #ffffff;
    color: #1b1f29;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.ds-locatie-spel-card__host-choice-button[aria-pressed="true"] {
    background: #e5347b;
    color: #ffffff;
}

.ds-locatie-spel-card__host-choice-mode {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 12px 22px;
    border-radius: 6px;
    background: #e5347b;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.ds-locatie-spel-card__host-choice-button:focus {
    outline: none;
    box-shadow: none;
}

.ds-locatie-spel-card__host-choice-help {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: #30333a;
    font-size: 16px;
    line-height: 1.45;
}

.ds-locatie-spel-card__host-choice-help .fontawesome-icon {
    float: none;
    margin: 0;
    color: #1b1f29;
    font-size: 18px;
    line-height: 1;
}

.ds-locatie-spel-card__prices {
    width: 100%;
}

.ds-locatie-spel-card__prices table {
    width: 100%;
}

.ds-locatie-spel-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: 900px;
    margin-top: 56px;
}

.ds-locatie-spel-card__actions--desktop {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: none;
    margin-top: 20px;
}

.ds-locatie-spel-card__actions--mobile {
    display: none;
}

.ds-locatie-spel-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 18px 28px;
    border-radius: 6px;
    font-size: 17px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ds-locatie-spel-card__button:hover,
.ds-locatie-spel-card__button:focus {
    text-decoration: none;
}

.ds-locatie-spel-card__button--primary {
    background: #e5347b;
    color: #ffffff;
}

.ds-locatie-spel-card__button--primary:hover,
.ds-locatie-spel-card__button--primary:focus {
    background: #c94786;
    color: #ffffff;
}

.ds-locatie-spel-card__button--secondary {
    background: #70d2b6;
    color: #2d1c63;
}

.ds-locatie-spel-card__button--secondary:hover,
.ds-locatie-spel-card__button--secondary:focus {
    background: rgba(112, 210, 182, 0.8);
    color: #2d1c63;
}

@media (max-width: 1200px) {
    .ds-locatie-spel-card {
        gap: 44px;
    }

    .ds-locatie-spel-card__title {
        font-size: 32px;
    }

    .ds-locatie-spel-card__meta {
        gap: 12px 20px;
    }

    .ds-locatie-spel-card__host-choice {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 1024px) {
    .ds-locatie-spel-card {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ds-locatie-spel-card__title {
        margin-top: 0;
    }

    .ds-locatie-spel-card__actions--desktop {
        display: none;
    }

    .ds-locatie-spel-card__actions--mobile {
        display: grid;
    }
}

@media (max-width: 768px) {
    .ds-locatie-spellen-grid {
        gap: 36px;
    }

    .ds-locatie-spel-card {
        padding: 0;
        gap: 0;
    }

    .ds-locatie-spel-card__image {
        border-radius: 6px 6px 0 0;
    }

    .ds-locatie-spel-card__body {
        padding: 32px;
    }

    .ds-locatie-spel-card__meta {
        gap: 12px 18px;
        margin-bottom: 18px;
    }

    .ds-locatie-spel-card__title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 26px;
    }

    .ds-locatie-spel-card__host-choice {
        margin: 24px 0 26px;
        padding: 18px;
    }

    .ds-locatie-spel-card__actions {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: none;
        margin-top: 40px;
    }

    .ds-locatie-spel-card__button {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ds-locatie-spel-card__body {
        padding: 24px;
    }

    .ds-locatie-spel-card__meta {
        font-size: 15px;
    }

    .ds-locatie-spel-card__meta-item .fontawesome-icon {
        font-size: 17px;
    }

    .ds-locatie-spel-card__title {
        font-size: 24px;
    }

    .ds-locatie-spel-card__host-choice-options {
        flex-direction: column;
    }

    .ds-locatie-spel-card__host-choice-button {
        border-right: 0;
        font-size: 15px;
    }

    .ds-locatie-spel-card__host-choice-help {
        font-size: 15px;
    }

    .ds-locatie-spel-card__button {
        min-height: 60px;
        font-size: 15px;
    }
}
