.apply-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}
.apply-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.application-form .address-fieldset {
    margin: 8px 0;
    padding: 12px;
    border: 1px solid #f1ece6;
    border-radius: 12px;
    background: #fffaf6;
}
.application-form .address-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
}
.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.apply-header {
    width: 100%;
    text-align: left;
    padding: 8px 0 12px;
}
.application-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.card.application-form {
    width: 100%;
    max-width: 1100px;
    margin-top: 0;
    padding: 16px;
}
.apply-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
    max-width: 1100px;
    width: 100%;
}
.apply-block {
    padding: 12px;
    background: #fff;
    border: 1px solid #f1ece6;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* På breda skärmar: två kolumner, men första blocket får bredare utrymme */
@media (min-width: 1200px) {
    .apply-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .apply-block:first-child {
        grid-column: span 1;
    }
    .apply-block:nth-child(2),
    .apply-block:nth-child(3) {
        grid-column: span 1;
    }
}
