.linkbokse {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.linkbokse .linkboks {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-decoration: none;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.05);
    border: solid 1px #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    transitioin: .1s ease;
    font-size: 16px;
    line-height: 130%;
    font-weight: 500;
}

.linkbokse .linkboks:hover {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08);
}

.linkbokse .linkboks:after {
    content: "";
    background-image: url(../images/chevron-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 12px;
    height: 12px;
    display: flex;
    margin-left: auto;
}

/* Linkbokse - Ekstra sektioner */

.linkbokse-grid-3 .linkbokse {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    gap: 10px;
}

@media (max-width:1023px) {
    .linkbokse-grid-3 .linkbokse {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:767px) {
    .linkbokse-grid-3 .linkbokse {
        grid-template-columns: 1fr;
    }
}