/* 이용가능 헤어샵 — AD 매장 이벤트 (카드 하단, 최대 2줄·기본 2줄 높이) */
.gallery-shop--has-event,
[class*="__shop--has-event"] {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.gallery-shop-card-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-width: 0;
}

.gallery-shop-event-bar {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    min-width: 0;
    padding-top: 10px;
    border-top: 1px solid #eef0f6;
}

.gallery-shop-event-bar--link {
    text-decoration: none;
    color: inherit;
    transition: background-color 0.15s ease;
}

.gallery-shop-event-bar--link:hover {
    background: #faf8ff;
}

.gallery-shop-event-bar--link:hover .gallery-shop-event-bar__title {
    color: #5b21b6;
}

.gallery-shop-event-bar__title,
.gallery-shop-event-title {
    flex: 1 1 auto;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    min-height: calc(1.4em * 2);
    color: #7452f6;
    word-break: keep-all;
}

@media (max-width: 720px) {
    .gallery-shop-card-row {
        gap: 8px;
    }

    .gallery-shop--has-event,
    [class*="__shop--has-event"] {
        gap: 8px;
    }

    .gallery-shop-event-bar {
        padding-top: 8px;
    }
}
