/* Caracteristici (Features) tab — Miele.ro inspired.
 * Full-bleed: escape any constrained parent and span the entire viewport. */
.raa-features {
    background: #000;
    color: #fff;
    padding: 64px 32px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
}

.raa-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.raa-features__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: transparent;
    color: #fff;
}

.raa-features__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
}

.raa-features__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.raa-features__title {
    font-size: 1.5rem;
    line-height: 1.25;
    margin: 0;
    color: #fff;
    font-weight: 600;
}

.raa-features__body {
    color: #d8d8d8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.raa-features__body p { margin: 0 0 12px; color: inherit; }
.raa-features__body em { color: #fff; font-style: italic; }
.raa-features__body a { color: #fff; text-decoration: underline; }
.raa-features__body strong { color: #fff; }

@media (max-width: 768px) {
    .raa-features {
        padding: 32px 16px;
    }
    .raa-features__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .raa-features__title { font-size: 1.25rem; }
}
