.loc-desc-section {
    padding: 0 0 35px;
    background: #fff
}

.loc-desc-section .loc-page-desc {
    font-size: 15.5px;
    line-height: 1.85;
    color: #444;
    text-align: center;
    max-width: 820px;
    margin: 0 auto
}

.loc-attractions-section {
    padding: 10px 0 80px;
    background: #fff
}

.loc-grid {
    gap: 40px 0
}

.loc-card-col {
    padding: 0 15px
}

.loc-card {
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column
}

.loc-card-img {
    overflow: hidden;
    margin-bottom: 18px;
    flex-shrink: 0
}

.loc-card-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform .55s
}

.loc-card-body {
    padding: 0 2px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.loc-card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: var(--Montserrat-font)
}

.loc-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color .25s
}

.loc-card-title a:hover,
.loc-show-more-btn:hover {
    color: var(--primary-color, #07c)
}

.loc-desc-wrap {
    flex: 1
}

.loc-desc-text-card {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height .4s
}

.loc-desc-text-card.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible
}

.loc-show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: 0 0;
    border: none;
    padding: 4px 0;
    color: #333;
    cursor: pointer;
    letter-spacing: .01em;
    line-height: 1;
    transition: color .2s;
    margin-top: 4px;
    font-size: 16px
}

p.mtr {
    width: 900px;
    text-align: center;
    margin: 0 auto;
    font-size: 16px
}

.loc-show-more-btn i {
    font-size: 11px;
    transition: transform .3s
}

.loc-show-more-btn.is-expanded i {
    transform: rotate(180deg)
}

@media (min-width:768px) and (max-width:991px) {
    .loc-card-img img {
        height: 200px
    }

    .loc-card-title {
        font-size: 18px
    }
}

@media (max-width:767px) {
    .loc-desc-section {
        padding: 30px 0 20px
    }

    .loc-attractions-section {
        padding: 10px 0 50px
    }

    .loc-card-col {
        padding: 0 12px
    }

    .loc-card-img img {
        height: 220px
    }

    .loc-card-title {
        font-size: 18px
    }

    .loc-grid {
        gap: 32px 0
    }
}