/* ==================================================
   HUSBILSFOLKET – STARTGUIDER
   ================================================== */

.startguide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 24px 0 48px;
}

.startguide-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    min-height: 220px;
}

.startguide-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    font-style: normal;
    line-height: 1.25;
}

.startguide-card p {
    margin: 0 0 20px;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.55;
}

.startguide-card .startguide-link {
    margin-top: auto;
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
}

/* Surfplatta */
@media (max-width: 960px) {
    .startguide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobil */
@media (max-width: 640px) {
    .startguide-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .startguide-card {
        padding: 20px;
        min-height: auto;
    }
}
/* Startguider – typografi i korten */

.startguide-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.3;
    font-style: normal !important;
    font-weight: 600;
}

.startguide-card p {
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.55;
    font-style: normal !important;
    font-weight: 400;
}

.startguide-card .startguide-link {
    margin-top: auto;
    font-size: 1rem;
    font-style: normal !important;
    font-weight: 600;
    text-decoration: none;
}
/* Startguider – nollställ typografin inne i korten */

.startguide-card,
.startguide-card h3,
.startguide-card p,
.startguide-card a,
.startguide-card em,
.startguide-card strong,
.startguide-card h3 em,
.startguide-card h3 strong,
.startguide-card p em,
.startguide-card p strong,
.startguide-card a em,
.startguide-card a strong {
    font-style: normal !important;
}

.startguide-card h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 600 !important;
}

.startguide-card p {
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 400 !important;
}

.startguide-card .startguide-link {
    margin-top: auto;
    font-size: 1rem;
    font-weight: 600 !important;
    text-decoration: none;
}