.tk-carousel {
    max-width: 100% !important;
    font-size: 18px;
    line-height: 28px;
}
.tk-carousel .swiper-wrapper {
    padding: 2.5rem 0;
}
.tk-carousel .swiper {
    padding-bottom: 1.5rem;
}
.tk-carousel .mySwiper-slide .box {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 30px #eeeeee;
    border-radius: 15px;
}
.tk-carousel .mySwiper-slide .box .details {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
    height: 94%;
}
.tk-carousel .mySwiper-slide .box .details .image{
    width: 100%;
}
.tk-carousel .mySwiper-slide .box .details .image img {
    width: 100%;
    max-width: 100%;
    max-height: 165px;
    height: 165px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}
.tk-carousel .mySwiper-slide .box .details .title {
    font-weight: 700;
    margin-bottom: 1rem;
}
.tk-carousel .mySwiper-slide .box .details .excerpt {
    color: #565656;
    margin-bottom: 1rem;
}
.tk-carousel .mySwiper-slide .box .details .date {
    font-size: 15px;
    text-align: left;
    margin-bottom: 1rem;
}
.tk-carousel .mySwiper-slide .box .details .price {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #4f7422;
}
.tk-carousel .mySwiper-slide .box .details .price span {
    margin-right: 5px;
    font-family: inherit;
    color: #969696;
    font-weight: 400;
    font-size: 16px;
}
.tk-carousel .mySwiper-slide .box .details .bottom {
    width: 100%;
    align-self: flex-start;
    margin-top: auto;
}
.tk-carousel .mySwiper-slide .box .details .link {
    width: 100%;
}
.tk-carousel .mySwiper-slide .box .details .link a {
    display: block;
    background: #e8f5da;
    border: none;
    color: #4f4f4f;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    padding: 6px;
}
.tk-carousel .mySwiper-slide .box .details .link a:hover {
    background: #c3d8ac;
}
.tk-carousel .swiper-pagination-bullet-active {
    background: #a5da4e !important;
    width: 40px !important;
    border-radius: 15px !important;
}
.tk-alert {
    margin: 2rem 0;
    text-align: center;
    font-size: 21px;
    font-weight: 600;
}
/*grid*/

.tk-grid {
    display: grid;
    margin: 2rem 0;
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    font-size: 18px;
    line-height: 28px;
}
.tk-grid .box {
    max-width: 100%;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 30px #eeeeee;
    border-radius: 15px;
    display: flex
}
.tk-grid .box .details {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.tk-grid .box .details .image{
    width: 100%;
}
.tk-grid .box .details .image img {
    width: 100%;
    max-width: 100%;
    max-height: 165px;
    height: 165px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}
.tk-grid .box .details .title {
    font-weight: 700;
    margin-bottom: 1rem;
}
.tk-grid .box .details .excerpt {
    color: #565656;
    margin-bottom: 1rem;
}
.tk-grid .box .details .date {
    font-size: 15px;
    text-align: left;
    margin-bottom: 1rem;
}
.tk-grid .box .details .price {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #4f7422;
}
.tk-grid .box .details .price span {
    margin-right: 5px;
    font-family: inherit;
    color: #969696;
    font-weight: 400;
    font-size: 16px;
}
.tk-grid .box .details .bottom {
    width: 100%;
    align-self: flex-end;
    margin-top: auto;
}
.tk-grid .box .details .link {
    width: 100%;
}
.tk-carousel .swiper-button-prev, .tk-carousel .swiper-button-next {
    background: #05050512;
    border-radius: 13px;
    padding: 5px;
    font-size: 9px;
}
.tk-carousel .swiper-button-prev:after, .tk-carousel .swiper-button-next:after {
    font-size: 24px;
    color: #b9b9b9;
}
.tk-grid .box .details .link a {
    display: block;
    background: #e8f5da;
    border: none;
    color: #4f4f4f;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    padding: 6px;
}
.tk-grid .box .details .link a:hover {
    background: #c3d8ac;
}
.tk-pagination {
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 5px;
}
.tk-pagination li {
    list-style: none;
    background: #f1f1f1;
    width: 30px;
    padding: 4px;
    text-align: center;
    border-radius: 7px;
}
.tk-pagination li.active {
    background: #8ad94d;
    color: #fff;
}
.tk-pagination li a {
    text-decoration: none;
}
.tk-carousel .mySwiper-slide {
    display: flex;
    flex-direction: column;
    flex: 1 1 100;
    height: auto;
}
.tk-carousel .mySwiper-slide .box {
    height: 100%;
}
@media (max-width: 1024px) {
    .tk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .tk-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}