.schafhof-arr-card {
    background: #f5f2ea;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(35, 48, 31, 0.08);
    font-family: 'Jost', sans-serif;
}

.schafhof-arr-card-linked {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.schafhof-arr-card-linked:hover {
    box-shadow: 0 12px 32px rgba(35, 48, 31, 0.16);
    transform: translateY(-2px);
    color: inherit;
}

.schafhof-arr-image-wrap {
    position: relative;
    line-height: 0;
}

.schafhof-arr-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.schafhof-arr-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #a92d29;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    text-align: center;
    line-height: 1.3;
}

.schafhof-arr-badge-price {
    display: block;
    font-weight: 600;
    font-size: 15px;
}

.schafhof-arr-badge-unit {
    display: block;
    font-size: 11px;
    opacity: 0.9;
}

.schafhof-arr-content {
    padding: 28px 32px 32px;
}

.schafhof-arr-kicker {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.schafhof-arr-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 30px;
    margin: 0 0 16px;
    line-height: 1.2;
}

.schafhof-arr-body {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

.schafhof-arr-divider {
    height: 1px;
    background: rgba(35, 48, 31, 0.15);
    margin: 22px 0;
}

.schafhof-arr-section-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #23301f;
    margin-bottom: 14px;
}

.schafhof-arr-included {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schafhof-arr-included li {
    position: relative;
    padding-left: 22px;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
}

.schafhof-arr-included li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    top: 0;
    color: #23301f;
}

.schafhof-arr-prices summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.schafhof-arr-prices summary::-webkit-details-marker {
    display: none;
}

.schafhof-arr-prices summary::after {
    content: '\25BC';
    font-size: 10px;
    color: #a92d29;
    transition: transform 0.2s ease;
    margin-left: 12px;
}

.schafhof-arr-prices[open] summary::after {
    transform: rotate(180deg);
}

.schafhof-arr-prices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
    margin-top: 8px;
}

.schafhof-arr-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 4px 12px;
    font-size: 15px;
    padding: 4px 0;
}

.schafhof-arr-price-cat {
    font-weight: 400;
    color: #4b4a40;
}

.schafhof-arr-price-val {
    font-weight: 500;
    color: #23301f;
    white-space: nowrap;
}

.schafhof-arr-price-row.is-sold-out {
    opacity: 0.55;
}

.schafhof-arr-price-row.is-sold-out .schafhof-arr-price-cat,
.schafhof-arr-price-row.is-sold-out .schafhof-arr-price-val {
    text-decoration: line-through;
}

@media (max-width: 600px) {
    .schafhof-arr-prices-grid {
        grid-template-columns: 1fr;
    }
    .schafhof-arr-content {
        padding: 24px 22px 26px;
    }
}
