p {
    margin-bottom: 0;
}

ul {
    list-style-type: none;
}

.oaka-main-title {
    background-color: #FFF;
    margin-bottom: 20px;
    padding: 5px 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.oaka-main-title .entry-title {
    margin: 0;
    font-size: 22px;
}

ul.oaka-collections-list-wrapper {
    display: grid;
    margin: 0px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom:30.375px;
}

li.oaka-item-collection {
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}
li.oaka-item-collection:hover {
    background-color: #d6d6d6;
}

li.oaka-item-collection a {
    margin-bottom: 0px;
}

li.oaka-item-collection img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

@media screen and (max-width:780px) {
    ul.oaka-collections-list-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:600px) {
    ul.oaka-collections-list-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    li.oaka-item-collection a h3 {
        margin-top: 5px;
        font-size: 16px;
        line-height: 1.7em;
    }
    .oaka-main-title .entry-title {
        line-height: 1.7em;
    }
}