/* ---------------------------------------------------------------------- */
/* item, general elements*/
/* ---------------------------------------------------------------------- */
.items-container {
    margin: auto;
    width: 100%;
    margin-top: 7%;

    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
}

.item-container {
    width: 100%;
}

.item_link {
    margin: auto;
    width: 50%;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 20px;

    display: flex;
    align-items: center;

    background-color: #f6f5f3;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(30, 30, 30, 0.2);
    text-decoration: none;
    color: inherit;

    transition: transform 0.3s ease, box-shadow 0.3s ease-in-out;
}

.item_link:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(30, 30, 30, 0.2);
}

.item-image {
    width: 100px;
    height: 100px; 
    margin-left: 15px;
    margin-right: 15px;
}

.item-text_container {
    margin-right: 15px;
}

.item-header {
    font-size: 1em;
    font-weight: bold;
}

.item-text {
    font-size: 1em;
}