section.featured-events {
    padding-bottom: 100px;
}

a.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;
    border-radius: 100px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
}
.ft-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
}
.ft-featured-img img {
    width: 100%;
}
.ft-content {
    text-align: left;
}

.ft-content h5 a {
    color: #303430;
}
.ft-card{
    box-shadow: var(--box-shadow-heavy);
    border-radius: 12px;
}
.ft-card-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.ft-tags span {
    background: #f7f7f7;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 28px;
    color: #6E706C;
    font-size: 12px;
}
.ft-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ft-left-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ft-left-meta-date, .ft-left-meta-location {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ft-left-meta-location img {
    width: 16px;
    height: 16px;
}
.ft-left-meta-date {
    padding-right: 8px;
}
.ft-left-meta-location {
    padding-left: 8px;
}
.ft-right-meta {
    align-items: center;
    display: flex;
    gap: 8px;
}
.ft-right-meta img {
    width: 20px;
    height: 20px;
}
.ft-right-meta span {
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
}
.ft-tags {
   
    margin-bottom: 20px;
}
.ft-card h5 {
    padding-bottom: 12px;
}
.ft-meta-info {
    margin-top: 20px;
}
.ft-featured-img img {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    height: 281px;
    object-fit: cover;
}
.ft-content {
    padding: 20px;
}

.ft-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {

    .ft-card-wrap {
        grid-template-columns: 1fr; 
    }
    .ft-left-meta-date p {
        font-size: 10px;
    }
    .ft-left-meta-date {
        padding-right: 0px;
    }
    .ft-left-meta-location {
        padding-left: 0px;
    }
     .ft-info h1 {
    font-size: 36px;
}

}