.rv-hotels__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (min-width: 992px) {
    .rv-hotels__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rv-hotel-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 520px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.rv-hotel-card:hover {
    transform: translateY(-5px);
}

.rv-hotel-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.4s ease;
}

.rv-hotel-card:hover .rv-hotel-card__bg {
    transform: scale(1.05);
}

.rv-hotel-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
    z-index: 2;
    backdrop-filter: blur(1px);
}

.rv-hotel-card__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.5rem;
    color: var(--white);
}

.rv-hotel-card__key {
    align-self: flex-end;
    font-size: 0.875rem;
    background: rgba(0, 0, 0, 0.55);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.rv-hotel-card__name {
    margin: 0;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 800;
}

.rv-hotel-card__desc {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}
.rv-hotel-card__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.rv-hotel-card__link {
    color: var(--beige);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rv-hotel-card__link:hover {
    color: var(--white);
}
.rv-hotel-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.rv-hotel-card__feature {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--white);
    gap: 0.4rem;
    background: rgba(0, 0, 0, 0.35);
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-weight: 500;
}
.rv-trust-text h3 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.rv-trust-text i {
    font-size: 1.25rem;
    color: var(--brown);
}

.rv-trust-text p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}
