.clanice-container {
    display: flex;
    flex-wrap: wrap;
    width: 94%;
    max-width: 1200px;
    margin: 4rem auto;
    justify-content: center;
    gap: 5%;
}

.clanice-item {
    text-align: center;
    padding-bottom: 0;
    padding-top: 0;
    width: 30%;
    margin-bottom: 3rem;
}

.clanice-item a {
    width: 100%;
    background-color: transparent;
    color: var(--color-text);
    margin-bottom: 0;
    margin-inline: 0;
    text-decoration: none;
}

.clanice-item .image-wrapper {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    padding: 3rem;
    margin-bottom: 0.5rem;
}

.clanice-item .image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 250ms;
}

.clanice-item .image-wrapper img:hover {
    transform: scale(1.1);
}

.clanice-item h3 {
    font-weight: normal;
}

@media only screen and (max-width: 800px) {
    .clanice-item {
        width: 45%;
    }
}
@media only screen and (max-width: 480px) {
    .clanice-item {
        width: 100%;
    }
}