.latest-stories{
    padding-bottom: 100px;
}
.lt-info {
    display: flex;
    justify-content: space-between;
}
button.View {
    max-width: 120px !important;
    width: 120px;
    height: 52px;
    background-color: var(--white-color);
    color: var(--secondary-color);
    box-shadow: 0px 2px 12px 0px #00000014;
}
h2.lt-card-title {
    line-height: 32px;
}
.lt-card {
    display: flex;
    margin-top: 40px;
    gap: 28px;
}
h2.lt-card-title {
    font-size: 18px;
    padding-bottom: 12px;
}
h2.lt-card-title a{
    color: var(--primary-color);
}
.lt-card-item {
    width: 33.33%;
    box-shadow: 0px 8px 40px 0px #BDBDBD47;
    border-radius: 12px;
}
.lt-card-img img {
    width: 100%;
    height: 281px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.lt-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 48%;
    text-align:left;
}
.lt-card-tags a, .lt-card-tags span {
    background: #f7f7f7;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 28px;
    color: #6E706C;
    font-size: 12px;

}
.lt-card-tags {
    margin-bottom: 20px;
}
.lt-card .post-meta {
    display: flex;
    gap: 8px;
    padding-top: 20px;
}
.lt-card span.post-date {
    font-size: 12px;
}
.lt-card span.read-time{
    color: var( --text-color);
}

@media (max-width: 768px) {

    .lt-card {
        flex-direction: column;
    }
.lt-info h1 {
    font-size: 36px;
    text-align: left;
}
    .lt-card-item {
        width: 100%;
    }
    .latest-stories{
        padding-bottom: 50px;
    }
    .lt-card span.post-date {
        font-size: 10px;
    }

.lt-card-tags{
display: grid;
    text-align: center;
}

.lt-card-tags a{
margin-bottom: 10px;
}

}

.lt-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

p.lt-card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.meta-with-read {
    margin-top: auto;
}


.lt-card-item a img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}