.frva-hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.frva-hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.frva-hero__title {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.frva-hero__subtitle {
    color: rgba(255,255,255,0.85);
    margin: 0 0 1.25rem;
    font-size: 1rem;
}

.frva-hero__btn {
    display: inline-block;
    background: #EE7623;
    color: #fff;
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.frva-hero__btn:hover {
    background: #EE7623;
    color: #fff;
}

.frva-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.frva-card {
    position: relative;
    aspect-ratio: 16 / 11;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.frva-card__link {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-indent: -9999px;
}

.frva-card__price {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #f5a623;
    color: #fff;
    padding: 0.5rem 0.875rem;
    line-height: 1.1;
    z-index: 1;
}

.frva-card__price-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
}

.frva-card__price-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
}

.frva-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.frva-card__title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.frva-card__meta {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .frva-card-grid {
        grid-template-columns: 1fr;
    }

    .frva-hero {
        min-height: 400px;
    }

    .frva-hero__title {
        font-size: 1.75rem;
    }
}