.thv-list-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 8px;
    text-align: center;
}

.thv-list-hero h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--thv-color-text);
}

.thv-list-hero p {
    max-width: 560px;
    margin: 0 auto;
}

.thv-tour-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px 64px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.thv-tour-card {
    background: var(--thv-color-bg);
    border: 1px solid var(--thv-color-border);
    border-radius: var(--thv-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--thv-shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.thv-tour-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--thv-shadow-lg);
}

.thv-tour-card__image {
    aspect-ratio: 16 / 9;
    background: var(--thv-color-bg-alt);
}

.thv-tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thv-tour-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thv-color-accent);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.thv-tour-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.thv-tour-card__body h2 {
    font-size: 1.15rem;
}

.thv-tour-card__body p {
    flex: 1;
    font-size: 0.92rem;
}

.thv-tour-card__body .thv-btn {
    align-self: flex-start;
    margin-top: 8px;
}
