.masonry {
    column-count: 1;
    column-gap: 0;
    counter-reset: item-counter;
}
@media screen and (min-width: 400px) {
    .masonry {
        column-count: 2;
    }
}
@media screen and (min-width: 600px) {
    .masonry {
        column-count: 2;
    }
}
@media screen and (min-width: 800px) {
    .masonry {
        column-count: 3;
    }
}
@media screen and (min-width: 1100px) {
    .masonry {
        column-count: 3;
    }
}
.item {
    box-sizing: border-box;
    break-inside: avoid;
    padding: 10px;
    counter-increment: item-counter;
}
.item__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 220px;
    font-size: 40px;
    color: #360007;
    background: currentColor;
    box-sizing: border-box;
    color: #720026;
}
.item__content:hover {
    background: #9b0034;
}

.item__content:after {
    color: #1c0004;
    content: 'ಠ‿ಠ';
}
.item__content--small {
    color: #ce4257;
    height: 100px;
}
.item__content--small:hover {
    background: #d66274;
}
.item__content--small:after {
    content: '♥◡♥';
}
.item__content--medium {
    color: #ffc093;
    height: 175px;
}
.item__content--medium:hover {
    background: #ffd8bc;
}
.item__content--medium:after {
    content: '◔ᴗ◔';
}
.item__content--large {
    color: #ff7f51;
    height: 280px;
}
.item__content--large:hover {
    background: #ff9d7a;
}
.item__content--large:after {
    content: 'ಠ_๏';
}

.w_10_p {
    width: 100%;
}