.holidays-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.tour-listing-page {
    padding: 64px 0;
}

.holiday-post-item {
    background: none;
    box-shadow: none;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.holiday-post-item::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(99, 171, 69, 0.1), rgba(29, 35, 31, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}
ul.listing-card-four__meta.list-unstyled li p {
    margin: 0;
}

.holiday-post-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.holiday-post-item:hover::before {
    opacity: 1;
}

.holiday-post-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.holiday-post-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.holiday-post-item:hover .holiday-post-image::after {
    opacity: 1;
}

.holiday-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.holiday-post-item:hover .holiday-post-image img {
    transform: scale(1.1);
}

.holiday-post-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.holiday-post-title {
    margin: 0 0 18px 0;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
}

.holiday-post-title a {
    color: var(--gotur-black, #1D231F);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.holiday-post-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gotur-base, #63AB45);
    transition: width 0.3s ease;
}

.holiday-post-title a:hover {
    color: var(--gotur-base, #63AB45);
}

.holiday-post-title a:hover::after {
    width: 100%;
}

.holiday-post-excerpt {
    color: var(--gotur-text, #595959);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.holiday-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.holiday-post-item:hover .holiday-post-overlay {
    opacity: 1;
}

.holiday-post-title-centered {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.holiday-post-item:hover .holiday-post-title-centered {
    transform: translateY(0);
    opacity: 1;
}

.holiday-post-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.holiday-post-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 171, 69, 0.3);
}

@media (max-width: 768px) {
    .holidays-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .holiday-post-content {
        padding: 25px;
    }
    
    .holiday-post-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .holidays-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Add animation for initial load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.holiday-post-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

.holiday-post-item:nth-child(2) {
    animation-delay: 0.2s;
}

.holiday-post-item:nth-child(3) {
    animation-delay: 0.4s;
}

.holiday-post-item:nth-child(4) {
    animation-delay: 0.6s;
}

/* Filter button styles */
.clear-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background-color: var(--gotur-base, #63AB45);
    color: var(--gotur-white, #fff);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.clear-filter-btn:hover {
    background-color: var(--gotur-black, #1D231F);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
span.prev-text {
    margin-right: 54px;
}
a.next.page-numbers {
    border: none;
    background-color: #fff !important;
}
/* post paginations */
.post-paginations {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
  }
  .post-paginations .previous,
  .post-paginations .next {
    width: auto;
    height: auto;
    padding: 11px 16px;
    border-color: var(--gotur-border-color, #E5E5E5);
  }
  .post-paginations .previous:hover,
  .post-paginations .next:hover {
    background-color: var(--gotur-base, #63AB45);
    color: var(--gotur-white, #fff);
  }
  .post-paginations a {
    display: inline-block;
    background-color: var(--gotur-white, #fff);
    color: var(--gotur-text, #595959);
    text-transform: capitalize;
    text-align: center;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 400ms ease;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 133%;
  }
  .post-paginations a .post-pagination__icon {
    font-size: 14.77px;
    color: var(--gotur-text, #595959);
    transition: all 400ms ease;
  }
  .post-paginations a .post-pagination__icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
  }
  .post-paginations a:hover {
    border-color: var(--gotur-base, #63AB45);
    color: var(--gotur-base, #63AB45);
    background-color: var(--gotur-gray, #F3F8F6);
  }
  .post-paginations a:hover .post-pagination__icon {
    color: var(--gotur-base, #63AB45);
  }
  .post-paginations li.active a {
    background-color: var(--gotur-base, #63AB45);
    color: var(--gotur-white, #fff);
  }
  .post-paginations li.active a .post-pagination__icon {
    color: var(--gotur-white, #fff);
  }

  .hover-lift {
    transition: all 0.3s ease;
    background: #fff;
}
.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.bg-gradient {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    position: relative;
    overflow: hidden;
}
.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}
.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}
.section-subtitle {
    color: #666;
    font-size: 1.8rem;
    font-weight: 500;
}
.section-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
}
.feature-box, .feature-item {
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.9);
    padding: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
}
.feature-box:hover .feature-overlay {
    bottom: 0;
    opacity: 1;
}
.cta-box {
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.gotur-btn {
    padding: 15px 35px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: #fff;
    color: #2c3e50;
    border: none;
    transition: all 0.3s ease;
}
.gotur-btn:hover {
    background: #2c3e50;
    color: #fff;
    transform: scale(1.05);
}
.pulse-animation {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255,255,255,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }
}
.feature-icon {
    position: relative;
    display: inline-block;
}
.feature-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.rounded-lg {
    border-radius: 15px;
}
.shadow-lg {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-color-theme {
    color: var(--gotur-primary, #F7921E);
}