* {
    font-family: var(--primary-font);
}

/* Tile Styling  */
.tile-row {
    grid-template-columns: repeat(3,1fr);
    column-gap: 20px;
    row-gap: 35px;
    display: grid;
    width: 100%;
    list-style: none;
    margin: 42px 0 0;
    padding: 0;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .tile-row {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 767.98px) { 
    .tile-row {
        grid-template-columns: 1fr;
        margin: 0;
    }
}

.listing-heading {
    padding: 0px 10px;
    border-left: 5px solid var(--tertiary-color);
    font-size: 25px;
    color: var(--primary-color);
    line-height: 26px;
    margin-top: 2.5rem;
    font-weight: 600;
    text-transform: inherit;
    text-align: inherit;
}

.single-tile {
    position: relative;
    overflow: hidden;
    border: 1px solid #a55b43;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    width: 100%;
    margin-bottom: 36px;
    padding-bottom: 17px;
    border-radius: 8px;
    text-decoration: none;
    z-index: 0;
}

.single-tile img {
    width: 100%;
}

.single-tile .image-sec > img {
    width: 100%;
    height: 230px;
    transition: transform .2s ease,box-shadow .2s ease,border-radius .2s ease;
}

.single-tile .content-sec {
    padding: 0 12px;
}

.single-tile .content-sec .paragraph {
    font-size: 14px;
    line-height: 2.5ex;
    height: 10ex;
    color: #696D74;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
}

.single-tile .content-sec .more {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: capitalize;
}

.single-tile:hover {
    text-decoration: none;
}
.single-tile:hover::after {
    inset: -16px -16px -10px;
    background-color: #f7f8fc;
    transition: all 0s .2s ease;
}

.single-tile::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 16px;
    content: "";
}

.single-tile .sub-topic {
    margin: 0px 0 8px;
    color: #646b81;
    text-transform: uppercase;
    letter-spacing: .9px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 11px;
    line-height: 16px;
}

.single-tile .main-topic {
    letter-spacing: 0;
    height: 60px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--primary-color);
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines to show */
    line-clamp: 2;
    margin-top: 8px;
    -webkit-box-orient: vertical;
}

/* Tile Styling  */