/* FULLBREDD BANNER */
.hp-feature-banner {
    width: 100%;
    background-color: #f9f7fa;
    min-height: 200px;
    padding: 60px 0;
}

/* INRE CONTAINER (ERSÄTTER DIN VANLIGA .container HÄR) */
.hp-feature-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hp-feature-container a:hover
{
    text-decoration:none;
    color:black;
}


/* VARJE KLICKBAR BOX */
.hp-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 20px;
    border-radius: 10px;

    text-decoration: none;
    color: inherit;

    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hp-feature-card:hover {
    background-color: rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

/* SVG IKON */
.hp-feature-card img {
    width: 48px;
    height: auto;
    flex-shrink: 0;
}

/* TEXTBLOCK */
.hp-feature-content {
    display: flex;
    flex-direction: column;
}

/* RUBRIK */
.hp-feature-title {
    margin: 0 0 6px;
    font-size: 3.1rem;
    font-weight: 600;
}

/* BESKRIVNING */
.hp-feature-text {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
}

/* TABLET – 2 + 2 */
@media (max-width: 900px) {
    .hp-feature-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBIL – KOLUMN */
@media (max-width: 500px) {
    .hp-feature-container {
        grid-template-columns: 1fr;
    }
}
