.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 200px);
    gap: 15px;
    justify-content: center;
}

.sort-images {
    max-width: 170px;
}

.card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.action-buttons {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.likes {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
}

.likes img {
    padding-top: 2px;
    display: inline-block;
}

.print-popup {
    display: none;
}

@media (max-width: 450px) {
    .grid-container {
        grid-template-columns: repeat(auto-fill, 150px);
    }

    .likes__count {
        display: none;
    }
    .sort-images {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 999px;
        border: 1px solid #dee2e6;
        background: #ffffff url("../../images/svg/sort.svg") no-repeat center center;
        background-size: 20px 20px;
        appearance: none;
        -webkit-appearance: none;

        color: transparent;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
    }
}
