/* Base Grøn knap-styling (desktop default) */
a.gron-knap {
    display: inline-block;
    background-color: #76b82a;
    color: #ffffff !important;
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 24px 24px 24px 24px !important; /* ↑ Increased padding */
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out;
    margin: 48px auto 48px auto; /* ↑ More top and bottom margin */
}

}

/* Hover */
a.gron-knap:hover {
    background-color: #517c1f;
    color: #ffffff !important;
}

/* Tablet (≤ 991px) */
@media (max-width: 991px) {
    a.gron-knap {
        display: block;
        width: 100%;
        padding: 20px 24px;
        margin: 24px 0;
        box-sizing: border-box;
    }
}

/* Mobile (≤ 575px) */
@media (max-width: 575px) {
    a.gron-knap {
        font-size: 20px;
        padding: 18px 20px;
        margin: 20px 0;
    }
}
