.sotp-stalls-wrap {
    width: 100%;
}

.sotp-stalls-controls {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    align-items: center;
}

.sotp-stalls-search,
.sotp-stalls-filter {
    flex: 1 1 240px;
}

.sotp-stalls-search-input,
.sotp-stalls-category {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.4;
    box-sizing: border-box;
}

.sotp-stalls-count {
    margin-bottom: 18px;
    font-size: 14px;
    opacity: 0.8;
}

.sotp-stalls-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sotp-stall-card {
    border: 2px solid #e6e6e6;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sotp-stall-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.sotp-stall-content {
    padding: 20px 20px 12px;
    flex: 1 1 auto;
}

.sotp-stall-category {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.7;
}

.sotp-stall-sponsor-badge {
    display: inline-block;
    margin: 0 0 12px;
    padding: 5px 14px;
    border: 2px solid #f28c28;
    border-radius: 999px;
    color: #111;
    background: #fff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.sotp-stall-title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
}

.sotp-stall-description p:last-child {
    margin-bottom: 0;
}

.sotp-stall-link-wrap {
    margin-top: 16px;
    margin-bottom: 0;
}

.sotp-stall-link {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}

.sotp-stall-divider {
    margin-top: auto;
    padding: 8px 16px 16px;
}

.sotp-stall-divider img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.sotp-stalls-no-results {
    margin-top: 18px;
}

@media (max-width: 1024px) {
    .sotp-stalls-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .sotp-stalls-grid {
        grid-template-columns: 1fr;
    }

    .sotp-stall-image img {
        height: 200px;
    }

    .sotp-stall-sponsor-badge {
        font-size: 18px;
        line-height: 20px;
    }
}

.sotp-sponsors-controls .sotp-stalls-search {
    max-width: 520px;
}

.sotp-sponsor-card .sotp-stall-image img {
    object-fit: contain;
    background: #fff;
    padding: 18px;
}

.sotp-stall-card.sotp-is-sponsor-listing {
    border-color: #f28c28;
}

.sotp-stall-card.sotp-is-sponsor-listing .sotp-stall-image img {
    border-radius: 12px 12px 0 0;
}