/* ================= NON BLOG HERO ONLY ================= */
.acc-wrapper[data-layout="horizontal"] {
    width:100%;
    height:803px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
    transition:background 0.6s ease;
}
.acc-hero-btn:hover {
  color: #fd9339;
}
/* Hero content */
.acc-wrapper[data-layout="horizontal"] .acc-hero-content{
    position:absolute;
    top:120px;
    left:50%;
    transform:translateX(-50%);
    max-width:1200px;
    width:100%;
    padding:0 20px;
    color:#fff;
    z-index:30;
}

.acc-hero-title{
    font-size:48px;
    margin-bottom:15px;
}

.acc-hero-desc{
    max-width:650px;font-size:20px;
    margin-bottom:0px;
}
.acc-hero-content i{
	font-size:20px;
}

.acc-hero-btn{
  font-family: Instrument Sans;
  display: block;
  padding: 0px;
  color: #fff;
  text-decoration: underline !important;
  font-weight: 400;
  margin-top: 31px;
  font-size: 20px;

}
.acc-wrapper::before {
  content: "";
  background: linear-gradient(180.08deg, rgba(0, 0, 0, 0.8) 15.92%, rgba(0, 0, 0, 0) 99.93%);
  height: 100%;
  width: 100%;
  position: absolute;
}
/* Inner thumbs positioned bottom */
.acc-inner {
/*     max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    position:absolute;
    bottom:60px;
    left:0;
    right:0;
    z-index:20; */
	  max-width: 1380px;
  margin: 0 auto;
  padding: 0px;
  position: absolute;
  bottom: 110px;
  left: auto;
  right: 0;
  z-index: 20;
}

/* Gap between thumbs */
.acc-swiper .swiper-wrapper{
    transition-timing-function: ease !important;
    display:flex;
/*     gap:30px; */
}

.acc-swiper .swiper-slide {
    padding:0;
}

/* Thumb card */
.acc-card {
    background:#fff;
    border-radius:12px;
    padding:18px;
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.acc-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 10px;
    overflow: hidden;
}
.acc-swiper {
    overflow: hidden;
    padding-left: 0 !important;
}
.acc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.acc-content h3{
    font-size:16px;
    margin-bottom:6px;
}

.acc-content p{
    font-size:13px;
    color:#555;
}

/* ================= BLOG LAYOUT (UNCHANGED) ================= */

/* BLOG CARD LAYOUT */
.acc-wrapper[data-layout="blog"] .acc-swiper {
    overflow: hidden;
}

.acc-wrapper[data-layout="blog"] .swiper-slide {
    width: 70%;
}

.acc-wrapper[data-layout="blog"] .swiper-slide-next {
    width: 55% !important;
}

/* BLOG CARD DESIGN */
.acc-blog-card {
    display: flex;
    flex-direction: row;
    background: #F9F7F2;
    border-radius: 0px;
    overflow: hidden;
    height: 379px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 95%;
    position: relative;
/*     left: 32%; */
    /* max-width: 883px; */
}
.acc-inners .acc-arrows {
  position: relative;
}
.acc-blog-image{
    width:50%;
}

.acc-blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.acc-blog-content{
    width:50%;
    padding:30px;
    background:#f5f3f1;
}

.acc-meta{
    font-size:12px;
    letter-spacing:1px;
    color:#666;
    margin-bottom:10px;
}

.acc-blog-content h3{
    font-size:22px;
    margin-bottom:15px;
}

.acc-blog-content p{
    font-size:14px;
    line-height:1.6;
}

.acc-blog-content { padding:30px; }

/* Arrows */
.acc-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 35px;
  margin-right: 70px;  color: #fff;
}

.acc-prev, .acc-next {
    width:42px;
    height:42px;
    border:1px solid #fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;  color: #fff;
}




@media (max-width: 768px){

    /* HERO WRAPPER */
    .acc-wrapper[data-layout="horizontal"]{
        height:auto !important;
        min-height:auto !important;
        padding-bottom:20px;
    }

    /* HERO CONTENT */
    .acc-wrapper[data-layout="horizontal"] .acc-hero-content{
        position:relative !important;
        top:0 !important;
        left:0 !important;
        transform:none !important;
        margin-top:30px;
        padding:20px;
    }

    /* 🔥 MAIN ISSUE FIX */
    .acc-inner{
        position:relative !important;
        bottom:auto !important;
        margin-top:20px;
        padding:0 15px;
    }

    /* SLIDER WIDTH FIX */
    .acc-swiper{
        width:100%;
    }

    .acc-swiper .swiper-slide{
        width:100% !important;
    }

    /* CARD ADJUST */
    .acc-card{
        padding:12px;
        gap:10px;
    }

    .acc-image{
        width:60px;
        height:60px;
        min-width:60px;
    }

    /* TEXT FIX */
    .acc-hero-title{
        font-size:24px;
        line-height:30px;
    }

    .acc-hero-desc,
    .acc-hero-content i{
        font-size:16px;
    }

    .acc-content h3{
        font-size:14px;
    }

    .acc-content p{
        font-size:12px;
    }

    /* ARROWS CENTER */
    .acc-arrows{
        justify-content:center !important;
        margin:15px 0;
        margin-right:0;
    }
}.acc-blog-title-link{
    text-decoration: none;
    color: #000;
}

.acc-blog-title-link:hover{
    color:#FDBD3B;
}

.acc-view-more:hover{
	
  color: #D4A42C!important;
}
.acc-view-more{
      display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-size: 16px;
  text-decoration: none;
  color: #080809!important;
  font-weight: 600;
}

.acc-view-more .arrow{
    margin-left: 6px;
    transition: 0.3s;
}

.acc-view-more:hover .arrow{
    transform: translateX(5px);
}