/* ==========================================================================
   BLOG SPECIFIC STYLES (SearchMyTrip Luxury)
   ========================================================================== */

/* Blog Image Hover Zoom */
.offer-card:hover img {
    transform: scale(1.08);
}

/* Arrow move on hover */
.offer-card:hover .bi-arrow-right {
    transform: translateX(5px);
}

/* Fix Summernote Content formatting inside Blog Details */
.blog-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: var(--smt-shadow-sm);
}

.blog-content-wrapper h2, .blog-content-wrapper h3, .blog-content-wrapper h4 {
    color: var(--smt-royal);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-content-wrapper a {
    color: var(--smt-orange);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.blog-content-wrapper blockquote {
    border-left: 4px solid var(--smt-orange);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--smt-royal-2);
    background: var(--smt-soft);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

/* Sidebar Recent Post Hover */
.group-hover-effect img {
    transition: transform 0.4s var(--smt-ease);
}
.group-hover-effect:hover img {
    transform: scale(1.1);
}
.hover-color-orange {
    transition: color 0.2s;
}
.group-hover-effect:hover .hover-color-orange {
    color: var(--smt-orange) !important;
}

/* Utility to restrict title to 2 lines */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.smt-section-card.p-4.mt-4.bg-grad-brand.text-white.text-center.position-relative.overflow-hidden{
    background: #1a4391; 
  
}