/**
 * Länklista Shortcode Styles
 */

.ifous-lanklistor {
    /* Container for all link lists */
}

.ifous-lanklista {
    /* Individual link list container */
    background-color: #EEF1ED;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    padding: 20px;
}

.ifous-lanklista:last-child {
    margin-bottom: 0;
}

.ifous-lanklista__rubrik {
    /* Link list heading */
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    border-bottom: 1px solid #BABEC1;
    padding-bottom: 10px;
}

.ifous-lanklista__lista {
    /* The ul element */
    list-style: none;
    margin: 0;
    padding: 0;
}

.ifous-lanklista__item {
    /* Individual li element */
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #BABEC1;
}

.ifous-lanklista__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.ifous-lanklista__link {
    /* The anchor element */
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
    color: inherit;
}

.ifous-lanklista__link::after {
    content: '';
    margin-left: 1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url('../images/Arrow Right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.ifous-lanklista__link:hover {
    text-decoration: none !important;
}
