/* Pet-friendly Stay — frontend styles.
 * Loaded automatically when the block is present (block.json "style").
 *
 * Two-column callout: hero image + text with a paw badge, an accommodation
 * list and a CTA. Add .b-petstay--rev to flip the image to the right. Stacks
 * on narrow screens. Uses shared design tokens from widget-frame.css.
 */

.b-petstay {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    margin: 32px 0;
    background: var(--surface, #fff);
    border: 1px solid var(--line, #e4ded2);
    border-radius: var(--radius, 14px);
    padding: 22px;
    box-shadow: 0 2px 8px rgba(60, 48, 30, 0.06);
}

.b-petstay--rev .b-petstay__media { order: 2; }

.b-petstay__media {
    border-radius: calc(var(--radius, 14px) - 4px);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.b-petstay__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.b-petstay__txt { min-width: 0; }

.b-petstay__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent, #9c3a52) 12%, transparent);
    color: var(--accent, #9c3a52);
    margin-bottom: 14px;
}

.b-petstay__kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.b-petstay__title {
    margin: 0 0 10px;
    font-size: 1.7rem;
    line-height: 1.15;
}

.b-petstay__body {
    margin: 0 0 14px;
    color: var(--ink-soft, #6b6255);
    font-size: 0.98rem;
    line-height: 1.6;
}

.b-petstay__cabins {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.b-petstay__cabins li {
    position: relative;
    padding-left: 26px;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--ink, #2c2620);
}

/* small paw-ish dot marker per accommodation */
.b-petstay__cabins li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent, #9c3a52);
}

@media (max-width: 780px) {
    .b-petstay {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .b-petstay--rev .b-petstay__media { order: 0; }
    .b-petstay__title { font-size: 1.4rem; }
}
