.tpc-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.tpc-card a {
    text-decoration: none;
    color: inherit;
}

.tpc-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
}

.tpc-content {
    padding: 15px;
}

.tpc-category {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}
.tpc-title {
     font-size: 34px !important;
    line-height: 40px;
    margin: 0 0 15px;
}

.tpc-excerpt {
font-size: 15px;
    color: #000000;
}



.tpc-wrapper {
    position: relative;
}

.tpc-carousel {
    overflow: hidden;
}

.tpc-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 20;
}

/* 👇 push OUTSIDE */
.tpc-prev {
    left: -60px;
}

.tpc-next {
    right: -60px;
}
@media (max-width: 780px) {
	.tpc-prev {
    left: 0px;
}

.tpc-next {
    right: 0px;
}
	
}