
.tour-product {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    height: 400px;
    z-index: 1;
}
.tour-product__description p:nth-child(2n) {
    display: none;
}
.tour-product:hover {

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.tour-product:hover .tour-product__image {
    transform: scale(1.09);
}

.tour-product__boximage {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    height: 100%;
}

.tour-product__boximage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000, transparent);
    z-index: 1;
}

.tour-product__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all .6s;
}

.tour-product__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
 
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    z-index: 10;

}

.tour-product__link {
    text-decoration: none;
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.tour-product__link:hover {
    color: #fa0f36;
}

.tour-product__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.tour-product__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.tour-product__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tour-product__btn {
    background: linear-gradient(90deg, rgba(181, 2, 32, 1) 0%, rgba(224, 9, 45, 1) 50%, rgba(250, 15, 54, 1) 100%);
    color: white;
    padding: 7px 31px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.tour-product__btn:hover {
    background: linear-gradient(90deg, rgba(160, 2, 28, 1) 0%, rgba(176, 16, 48, 1) 50%, rgba(200, 12, 44, 1) 100%);
    transform: scale(1.05);
    color: white;
}

.tour-product__btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.tour-product__duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
}

.tour-product__icon {
    width: 26px;
    line-height: 1;
}

.tour-product__duration-text {
    font-size: 16px;
    font-weight: 400;
}

.tour-product__duration-text {}

@media (max-width: 992px) {
    .tour-product__overlay {
        padding: 15px;
    }
    .tour-product{
        height: 350px;
    }

}

/* article */
.article-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* Image Block */
.article-card__image {
   
    background: var(--color-bg-light);
}

.article-card__image-link {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc((227 / 387) * 100%);
}

.article-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.article-card:hover .article-card__img {
    transform: scale(1.05);
}

/* Content Block */
.article-card__content {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta Information */
.article-card__meta {
    color: var(--color-text-gray);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-card__date,
.article-card__views {
    display: inline-block;
}

/* Title */
.article-card__title-link {
    text-decoration: none;
    color: inherit;
    margin-bottom: 10px;
    display: block;
}

.article-card__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.article-card__title-link:hover .article-card__title {
    color: var(--color-primary-light);
}

/* Excerpt */
.article-card__excerpt {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.7;
    color: var(--color-text-gray);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Read More Button */
.article-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 47px 10px 28px;
    background: linear-gradient(90deg, rgba(181, 2, 32, 1) 0%, rgba(224, 9, 45, 1) 50%, rgba(250, 15, 54, 1) 100%);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    align-self: flex-start;
}

.article-card__button:hover {
    background: var(--color-primary-dark);
    transform: translateX(4px);
    color: white;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.article-card__button-icon {
    position: absolute;
    right: 15px;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.article-card__button:hover .article-card__button-icon {
    transform: translateX(4px);
}

/*  */
.js-slider .slick-list{
    margin: 0 -10px;
}
.js-slider__item{
    margin: 0 10px;
}
.slider-common .slick-dots {
	bottom: -17px;
}

.slider-common .slick-dots li button:before {
	font-size: 12px;
	color: #999;
	opacity: 0.5;
	content: "";
}

.slider-common .slick-dots li.slick-active button:before {
	color: #333;
	opacity: 1;
}
.slider-common:hover .slick-arrow {
    opacity: 1
}

.slider-common .slick-arrow {
    background: linear-gradient(90deg, rgba(181, 2, 32, 1) 0%, rgba(224, 9, 45, 1) 50%, rgba(250, 15, 54, 1) 100%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.slider-common .slick-arrow svg {
    width: 20px;
    height: 20px;
    fill: #fff
}

@media (max-width: 768px) {
    .article-card__button-icon {
        width: 15px;
        height: 15px;
    }
}