#tour-blogs {
    padding-top: 52px;
}

.custom__colunm::before {
    display: none;
}

.custom__colunm {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.custom__colunm .tour_item {
    width: 100%;
}

.tour__content__p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.4;
    max-height: calc(1.4em * 3);
    word-break: break-word;
    margin-bottom: 10px !important;
}

.tour__content__h3 {
    min-height: auto;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.pagination a,
.pagination span {
    margin: 0 5px;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #f5f5f5;
}

.pagination .current {
    background-color: #212121;
    color: #ffffff;
    border-color: #212121;
}

.pagination .disabled {
    color: #ccc;
    cursor: not-allowed;
}

@media screen and (max-width: 998px) {
    .custom__colunm {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .custom__colunm {
        display: grid;
        grid-template-columns: 1fr;
    }
}