html {
    scroll-behavior: smooth; /* still use JS for exact offset handling */
}
/* Active menu link */
#site-menu a.active {
    color: #ffbd14;
}
.sales-box {
    background-image: url(tmp/sample-sales-background.jpg);
} /* Basic layout */
.faqs-section {
    width: 100%;
    padding: 3rem 1rem;
    box-sizing: border-box;
    background: transparent;
}

.faqs-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.faqs-title {
    font-size: 2rem;
    margin: 0 0 1rem;
    text-align: left;
}

/* Grid: two columns on wider screens, single column on small screens */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* FAQ item */
.faq-item {
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.16s ease;
}

.faq-item:focus-within {
    transform: translateY(-3px);
}

/* Question button */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
}

.faq-question:focus {
    outline: 3px solid rgba(66,153,225,0.25);
    outline-offset: 2px;
    border-radius: 8px;
}

/* plus icon using ::after */
.faq-question::after {
    content: "\002B";
    font-size: 1.8rem;
    margin-left: auto;
    transition: transform 0.2s ease;
    line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

/* Answer panel (collapsed by default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.34s ease, padding 0.2s ease;
}

/* When open we set padding-bottom for spacing; JS sets max-height inline for smooth transition */
.faq-answer.open {
    padding-bottom: 20px;
}

.faq-answer p {
    margin: 12px 0 0;
    line-height: 1.6;
    font-size: 0.985rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .faqs-title {
        font-size: 2.25rem;
    }

    .faq-question {
        padding: 22px 24px;
        font-size: 1.12rem;
    }

    .faq-answer {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1100px) {
    .faqs-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .faq-item {
        border-radius: 14px;
    }
}

/* Small screens */
@media (max-width: 420px) {
    .faqs-section { padding: 2rem 0.6rem; }
    .faqs-title { font-size: 1.5rem; }
    .faq-question { padding: 14px 16px; font-size: 1rem; }
    .faq-question::after { font-size: 1.6rem; }
    .faq-answer p { font-size: 0.96rem; }
}

@media (min-width: 768px) {
    .home .cs-section {
        padding-bottom:3rem
    }
}

@media (min-width: 992px) {
    .home .cs-section {
        padding-bottom:4rem
    }
}

@media (min-width: 1200px) {
    .home .cs-section {
        padding-bottom:5rem
    }
}

.home .cs-section h2 {
    margin-top: 1rem;
    margin-bottom: 1rem
}

@media screen and (max-width: 790px){
    html {
        font-size: 14px;
    }
    .wrapper {
        width: 80%;
    }
}

/* Base */
.section-padding { padding: 72px 0; }
.section-title { text-align:center; margin-bottom: 44px; }
.section-title h2 { font-size: clamp(20px, 4.2vw, 30px); margin:0; letter-spacing:-0.01em; }

/* decorative bars */
.section-borders { display:inline-flex; align-items:center; gap:8px; margin-top:12px; }
.section-borders span { height:6px; width:40px; background:#f17a24; border-radius:3px; display:inline-block; }
.section-borders .black-border { background:#222; width:28px; margin:0 6px; }

/* Owl dots */
.client-testimonial-carousel .owl-dots { text-align:center; margin-top:20px; }
.client-testimonial-carousel .owl-dots button {
    height:8px; width:24px; display:inline-block; margin:6px 6px;
    background:#f17a24; border-radius:6px; border:0; transition: all .18s ease;
}
.client-testimonial-carousel .owl-dots button span { display:block; height:100%; width:100%; border-radius:6px; }
.client-testimonial-carousel .owl-dots button[aria-current="true"],
.client-testimonial-carousel .owl-dots button.owl-dot.active {
    background:#fff; width:36px; box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* Testimonial card */
.single-testimonial-item{
    position:relative;
    background: #fff;
    color:#111;
    box-shadow: 0 6px 20px rgba(12,15,20,0.06);
    border-radius: 12px;
    margin: 10px;
    padding: 24px 22px 22px 96px;   /* leave room for left icon area on large screens */
    font-style: italic;
    min-height: 140px;
    transition: transform .18s ease, box-shadow .18s ease;
}

/* subtle hover/focus */
.single-testimonial-item:hover,
.single-testimonial-item:focus {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(12,15,20,0.12);
    outline: none;
}


/* name/title */
.single-testimonial-item h3{
    font-size: 16px;
    font-style: normal;
    margin-top: 14px;
    margin-bottom: 0;
    font-weight:700;
}
.single-testimonial-item h3 span{
    display:block;
    font-size: 13px;
    font-weight:500;
    color:#666;
    margin-top:6px;
}

/* quote text */
.single-testimonial-item p{
    margin:0;
    font-size: 15px;
    line-height: 1.6;
    color:#222;
}

/* carousel item spacing fix */
.client-testimonial-carousel .owl-stage-outer { padding: 6px 18px; }

/* Responsive adjustments */
/* Medium devices: reduce left padding and icon size */
@media (max-width: 991.98px) {
    .single-testimonial-item{ padding: 20px 18px 18px 82px; min-height: 130px; }
    .single-testimonial-item:before{ left: 22px; top: 22px; font-size: 20px; }
    .single-testimonial-item:after{ left: 66px; }
}

/* Small & Mobile: stack content, remove left gutter, increase readability */
@media (max-width: 575.98px) {
    .section-padding { padding: 42px 12px; }
    .section-title { margin-bottom: 28px; }
    .single-testimonial-item {
        padding: 18px 14px;
        font-style: normal;            /* easier to read on small screens */
        border-radius: 10px;
        margin: 10px 6px;
        min-height: auto;
    }
    .single-testimonial-item:before { position: relative; left: auto; top: auto; display:inline-block; margin-right:10px; font-size:18px; vertical-align: middle; }
    .single-testimonial-item:after { display:none; } /* remove separator */
    .single-testimonial-item p { font-size: 16px; line-height:1.65; }
    .single-testimonial-item h3 { margin-top:12px; font-size:15px; }
    .client-testimonial-carousel .owl-dots { margin-top: 16px; }
}

/* Accessibility: focus visible state for keyboard users */
.single-testimonial-item:focus { box-shadow: 0 20px 44px rgba(12,15,20,0.14); border: 3px solid rgba(241,122,36,0.08); }
.client-testimonial-carousel .owl-item {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}
.client-testimonial-carousel .single-testimonial-item {
    width: 100% !important;
    max-width: 760px;             /* adjust as you like */
    box-sizing: border-box;
    padding-left: 24px;           /* reduced desktop gutter baseline */
    padding-right: 22px;
}
/* Remove/convert left icon gutter on small screens (icon in-flow) */
@media (max-width: 575.98px) {
    /* remove owl stage padding if still present */
    .client-testimonial-carousel .owl-stage-outer { padding-left: 0 !important; padding-right: 0 !important; }

    /* card becomes full width, smaller internal paddings */
    .client-testimonial-carousel .single-testimonial-item {
        padding-left: 14px !important;
        padding-right: 14px !important;
        margin: 10px 6px;
        font-style: normal; /* improves readability on small screens */
        border-radius: 10px;
    }

    /* put the quote icon inline to avoid a big left gutter */
    .client-testimonial-carousel .single-testimonial-item:before{
        position: relative;
        left: 0;
        top: 0;
        display: inline-block;
        margin-right: 10px;
        font-size: 18px;
        vertical-align: middle;
    }
    .client-testimonial-carousel .single-testimonial-item:after { display:none; }

    /* Dot sizing for phones */
    .client-testimonial-carousel .owl-dots button {
        height: 8px; width: 24px; margin: 8px 6px;
        border-radius: 6px;
    }
    .client-testimonial-carousel .owl-dots button.owl-dot.active {
        width: 32px;
    }
}
/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .single-testimonial-item, .single-testimonial-item:hover, .single-testimonial-item:focus { transition: none; transform: none; }
}

/*widget*/
/* CSS Multiple Whatsapp Chat */
.blantershow-chat:link,
.blantershow-chat:visited {
    color: #444;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}
.no-scroll {
    overflow: hidden; /* hides scrollbars */
    resize: none;     /* optional: disables manual resizing */
}
.whatsapp-name {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 0.5;
}

#whatsapp-chat {
    box-sizing: border-box !important;

    outline: none !important;
    position: fixed;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 90px;
    right: 30px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1);
}
a.blantershow-chat {
    /*   background: #009688; */
    background: #fff;
    color: #404040;
    position: fixed;
    display: flex;
    font-weight: 400;
    justify-content: space-between;
    z-index: 98;
    bottom: 25px;
    right: 30px;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}
a.blantershow-chat svg {
    transform: scale(1.2);
    margin: 0 10px 0 0;
}
.header-chat {
    /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
    background: #009688;
    background: #095e54;
    color: #fff;
    padding: 20px;
}
.header-chat h3 {
    margin: 0 0 10px;
}
.header-chat p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.info-avatar {
    position: relative;
}
.info-avatar img {
    border-radius: 100%;
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
}

a.informasi {
    padding: 20px;
    display: block;
    overflow: hidden;
    animation-name: showhide;
    animation-duration: 0.5s;
}
a.informasi:hover {
    background: #f1f1f1;
}
.info-chat span {
    display: block;
}
#get-label,
span.chat-label {
    font-size: 12px;
    color: #888;
}
#get-nama,
span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}
#get-label,
#get-nama {
    color: #fff;
}
span.my-number {
    display: none;
}
 .blanter-msg {
  color: #444;
 background-color: #ffffff;
  padding: 10px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
}
textarea#chat-input {
    border: none;
    font-family: "Arial", sans-serif;
    width: 100%;
    height: 20px;
    outline: none;
    resize: none;
    margin-top: 10px;
    font-size: 14px;
}

a#send-it {
    width: 40px;
    font-weight: 700;
    padding: 5px 11px;
    background: #eee;
    border-radius: 10px;

    svg {
        fill: #a6a6a6;
        height: 24px;
        width: 24px;
    }
}

.first-msg {
    background: transparent;
    padding: 30px;
    text-align: center;
    & span {
        background: #e2e2e2;
        color: #333;
        font-size: 14.2px;
        line-height: 1.7;
        border-radius: 10px;
        padding: 15px 20px;
        display: inline-block;
    }
}

.start-chat .blanter-msg {
    display: flex;
}
#get-number {
    display: none;
}
a.close-chat {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 30px;
}

@keyframes ZpjSY {
    0% {
        background-color: rgb(182, 181, 186);
    }
    15% {
        background-color: rgb(17, 17, 17);
    }
    25% {
        background-color: rgb(182, 181, 186);
    }
}

@keyframes hPhMsj {
    15% {
        background-color: rgb(182, 181, 186);
    }
    25% {
        background-color: rgb(17, 17, 17);
    }
    35% {
        background-color: rgb(182, 181, 186);
    }
}

@keyframes iUMejp {
    25% {
        background-color: rgb(182, 181, 186);
    }
    35% {
        background-color: rgb(17, 17, 17);
    }
    45% {
        background-color: rgb(182, 181, 186);
    }
}

@keyframes showhide {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
}
@keyframes showchat {
    from {
        transform: scale(0);
        opacity: 0;
    }
}
@media screen and (max-width: 480px) {
    #whatsapp-chat {
        width: auto;
        left: 5%;
        right: 5%;
        font-size: 80%;
    }
}
.hide {
    display: none;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}
.show {
    display: block;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}

.whatsapp-message-container {
    display: flex;
    z-index: 1;
}

.whatsapp-message {
    padding: 7px 14px 6px;
    background-color: rgb(255, 255, 255);
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
    padding: 20px 20px 20px 10px;
    background-color: rgb(230, 221, 212);
    position: relative;
    &::before {
        display: block;
        position: absolute;
        content: "";
        left: 0px;
        top: 0px;
        height: 100%;
        width: 100%;
        z-index: 0;
        opacity: 0.08;
        background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
    // background-image: url(https://res.cloudinary.com/eventbree/image/upload/v1575782560/Widgets/whatsappbg_opt.jpg);
    }
}

.dAbFpq {
    display: flex;
    z-index: 1;
}

.eJJEeC {
    background-color: rgb(255, 255, 255);
    width: 52.5px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.1s ease 0s;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
    position: relative;
    display: flex;
}

.ixsrax {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    background-color: rgb(158, 157, 162);
    animation-name: ZpjSY;
}

.dRvxoz {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    background-color: rgb(182, 181, 186);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    animation-name: hPhMsj;
}

.kAZgZq {
    padding: 7px 14px 6px;
    background-color: rgb(255, 255, 255);
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
    &::before {
        position: absolute;
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-size: contain;
        content: "";
        top: 0px;
        left: -12px;
        width: 12px;
        height: 19px;
    }
}

.bMIBDo {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: rgb(17, 17, 17);
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: rgb(17, 17, 17);
}

.cqCDVm {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: rgba(17, 17, 17, 0.5);
    margin-right: -8px;
    margin-bottom: -4px;
}

/*telegram*/
:root{
    --btn-bg: #fff;                /* button background */
    --accent: #f39c12;             /* orange fill for icon */
    --accent-dark: #d88b10;        /* border / darker orange */
    --muted: #9aa0a6;              /* small label color */
    --text: #222;                  /* main text */
    --radius: 14px;                /* button corner radius */
    --icon-radius: 8px;            /* orange square radius */
    --pad-v: 8px;                  /* vertical padding */
    --pad-h: 14px;                 /* horizontal padding */
    --shadow: 0 2px 0 rgba(0,0,0,0.06);
    --border-w: 3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Button base */
.pod-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--btn-bg);
    border-radius: var(--radius);
    padding: var(--pad-v) var(--pad-h);
    border: var(--border-w) solid var(--accent-dark);
    box-shadow: var(--shadow);
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform .08s ease, box-shadow .12s ease;
    min-height: 48px;
}

.pod-btn:active { transform: translateY(1px); }
.pod-btn:focus { outline: 3px solid rgba(243,156,18,0.12); outline-offset: 2px; }

/* Icon block (orange rounded-square) */
.pod-btn__icon{
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    border-radius: var(--icon-radius);
    flex: 0 0 40px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.06) inset;
}

/* SVG inside icon scales nicely */
.pod-btn__icon svg{ width: 22px; height: 22px; display:block; }

/* text area */
.pod-btn__text{
    display: flex;
    flex-direction: column;
    line-height: 1;
    transform: translateY(-1px); /* optical align */
}

.pod-btn__label{
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.1px;
    margin-bottom: 4px;
}

.pod-btn__title{
    font-size: 15px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
}
.pod-btn:hover {
    text-decoration: none;
}

/* optional right spacing or small drop-shadow like original */
.pod-btn--compact{ gap:10px; min-height:44px; padding:6px 12px; border-width:2px; }

/* Hover subtle effect */
.pod-btn:hover{
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

/* Responsive: shrink text on tiny widths */
@media (max-width:360px){
    .pod-btn__title{ font-size:14px; }
    .pod-btn__label{ font-size:11px; }
    .pod-btn__icon{ width:36px; height:36px; }
    .pod-btn__icon svg{ width:18px; height:18px; }
}

/*HOW WORK*/
:root {
    --primary: #f17a24;
    --bg: #091010;
    --text: #fff;
    --muted: #bfbfbf;
    --panel: rgba(255,255,255,0.03);
}

/* Section base */
#how-it-works {
    background: var(--bg);
    color: var(--text);
}

#how-it-works .how-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.2rem 0.5rem;
    box-sizing: border-box;
}

.section-head { text-align: left; margin-bottom: 1rem; }
.section-head h2 {
    font-size: 2rem;
    margin: 0 0 0.25rem;
    color: var(--text);
}
.section-head .subtitle {
    color: var(--muted);
    margin: 0 0 0.6rem;
    font-size: 0.98rem;
}

.section-borders { display:flex; gap:6px; align-items:center; margin-top:8px; }
.section-borders span { display:inline-block; height:4px; width:32px; background:#111; border-radius:2px; opacity:0.6; }
.section-borders .black-border { background:var(--primary); width:48px; opacity:1; }

.how-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; align-items: start; }

/* Steps column */
.steps-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.step-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 16px;
    transition: transform .12s ease, box-shadow .12s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.6); }

.step-head { display:flex; align-items:center; gap:14px; margin-bottom:8px; }
.step-badge {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--primary-alt-color);
    padding:8px 12px;
    border-radius: 999px;
    font-weight:700;
    font-size:.86rem;
    letter-spacing: .6px;
}
.step-head h3 { margin:0; font-size:1.05rem; color:var(--text); }

.step-desc { margin: 6px 0 10px; color: var(--muted); line-height:1.5; font-size:.98rem; }

.step-meta { display:flex; gap:10px; flex-wrap:wrap; }
.step-meta .meta {
    display:inline-flex; align-items:center; gap:8px;
    font-size:.86rem; color:var(--muted);
    background: rgba(255,255,255,0.02);
    padding:6px 8px; border-radius:8px;
}

/* Sidebar */
.how-sidebar {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.04);
}
.how-sidebar h3 { margin: 0 0 8px; font-size: 1.05rem; color:var(--text); }
.feature-list { list-style: none; padding: 0; margin: 0 0 12px; color:var(--muted); }
.feature-list li { margin: 8px 0; font-size:.95rem; line-height:1.45; }

.cta-block { display:flex; gap:10px; flex-direction:column; margin: 12px 0; }
.cta-block a {
    display:inline-flex; align-items:center; justify-content:center;
    gap:10px; text-decoration:none; padding:12px 14px; border-radius:10px;
    font-weight:700; border:1px solid transparent; cursor:pointer;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.cta-whatsapp {
    background: linear-gradient(90deg, var(--primary), #ff9b4a);
    color: #111;
    border: 1px solid rgba(255,255,255,0.06);
}
.cta-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(241,122,36,0.12); }

.cta-telegram {
    background: transparent;
    color: #222;
    border: 1px solid rgba(255,255,255,0.06);
}
.cta-telegram:hover { background: rgba(255,255,255,0.02); transform: translateY(-3px); }

.note { background: rgba(241,122,36,0.06); padding:10px; border-radius:8px; font-size:.92rem; color:var(--primary); margin-top:8px; border:1px solid rgba(241,122,36,0.08); }

/* Responsive layout */
@media (min-width: 820px) {
    .how-grid { grid-template-columns: 2fr 1fr; gap: 1.5rem; }
    .how-sidebar { position: sticky; top: 28px; align-self:start; }
}

@media (max-width: 480px) {
    .section-head h2 { font-size: 1.4rem; }
    .step-card { padding: 12px; }
    .step-badge { padding:6px 10px; font-size:.82rem; }
    .cta-block a { padding:10px; font-size:.95rem; }
}

/* Mobile-first adjustments for episode cards */
.episode-card {
    background: transparent;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    -webkit-font-smoothing:antialiased;
}

/* Make entry-media thumbnail responsive and smaller on mobile */
.episode-card .entry-media {
    width: 100%;
    display: block;
    padding: 0;
    margin-bottom: 12px;
    position: relative;
}

/* Thumb image: keep aspect ratio, crop to look like poster */
.episode-card .entry-media img {
    width: 100%;
    height: 220px;               /* card poster height for mobile */
    object-fit: cover;           /* crop to cover without distortion */
    display: block;
    border-radius: 10px;
}

/* "new" ribbon scaled down and positioned top-left */
.episode-card .entry-media .ribbon {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 14px;
    background: var(--accent, #f17a24);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* Content column: flush, compact paddings */
.episode-card .entry-header,
.episode-card .entry-audio,
.episode-card .entry-content {
    padding: 0 6px;
}

/* Meta: make it concise and inline */
.episode-card .entry-meta{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    color: #9aa0a6;
    font-size: 13px;
    margin-bottom: 6px;
}
.episode-card .entry-meta a { color: inherit; text-decoration: none; }

/* Title: larger, bold, readable */
.episode-card .entry-title{
    font-size: 18px;
    line-height: 1.25;
    margin: 0 0 8px;
    font-weight: 700;
}

/* Audio player: full width and compact height */
.episode-card .entry-audio .wp-audio-shortcode,
.episode-card .entry-audio audio {
    width: 100% !important;
    height: 48px !important;
    max-height: 56px;
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
}

/* Description collapse/summary */
.entry-content__summary {
    max-height: 4.6em;   /* ~2.5 lines depending on font-size */
    overflow: hidden;
    position: relative;
    transition: max-height .36s ease;
    font-size: 15px;
    color: #222;
}


/* Read more button */
.readmore-btn {
    margin-top: 10px;
    background: transparent;
    border: 0;
    color: var(--accent, #f17a24);
    font-weight: 700;
    cursor: pointer;
    padding: 6px;
    font-size: 14px;
    display: inline-block;
}

/* when expanded remove gradient & allow full height */
.entry-content__summary.expanded {
    max-height: 1000px;
}
.entry-content__summary.expanded::after{ display:none; }

/* For medium screens & up keep two-column layout but adjust image size */
@media (min-width: 768px) {
    .episode-card .entry-media img { height: 180px; }
    .episode-card .entry-content__summary { max-height: none; }
    .readmore-btn { display: none; } /* disable read more on larger screens */
}

/* Optional: reduce title size on very small phones */
@media (max-width: 360px) {
    .episode-card .entry-media img { height: 180px; }
    .episode-card .entry-title { font-size: 16px; }
    .episode-card .entry-meta { font-size: 12px; }
}

/*collabs*/
/* Read-more styles for episode cards */
.entry-content {
    position: relative;
    overflow: visible;
}

/* summary wrapper: controlled height */
.entry-content__summary {
    overflow: hidden;
    transition: max-height .36s ease, opacity .2s ease;
    will-change: max-height;
    position: relative;
}


/* when expanded remove fade */
.entry-content__summary.expanded::after {
    opacity: 0;
    height: 0;
}


/* make button keyboard-friendly focus outline */
.readmore-btn:focus {
    outline: 3px solid rgba(241,122,36,0.12);
    outline-offset: 4px;
    border-radius: 6px;
}

/* default collapsed heights (will be overridden by JS for precision) */
.entry-content__summary[data-collapsed-lines="4"] { max-height: calc(1.5em * 4); }
.entry-content__summary[data-collapsed-lines="5"] { max-height: calc(1.5em * 5); }

/* small screen: default shorter preview */
@media (max-width: 575.98px) {
    .entry-content__summary { --collapsed-lines: 4; }
}

/* larger screens: show more lines */
@media (min-width: 576px) {
    .entry-content__summary { --collapsed-lines: 6; }
}

/* when expanded allow full height */
.entry-content__summary.expanded {
    max-height: 2000px; /* big enough to reveal full text; JS will set precise height too */
}

/* Optional: small animation for button arrow */
.readmore-btn .chev { display:inline-block; margin-left:6px; transition: transform .2s ease; }
.readmore-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* Keep paragraphs readable */
.entry-content__summary p { margin: 0 0 0.75em 0; color: #FFFFFF; font-size: 15px; line-height: 1.6; }
/* Container: horizontally scrollable flex row */
.tabs {
    display: flex;              /* align items in a row */
    flex-wrap: nowrap;          /* don't wrap to next line */
    overflow-x: auto;           /* allow horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* smooth momentum on iOS */
    gap: 18px;                  /* spacing between tabs (adjust) */
    padding: 0 12px;            /* optional side padding */
    margin: 0;
    list-style: none;
}

/* Each tab should not shrink — keeps readable width */
.tb-tab {
    flex: 0 0 auto;             /* width fits content, doesn't shrink */
    white-space: nowrap;        /* prevent internal wrapping */
}

/* Anchor styling (adjust to match your theme) */
.tb-tab a {
    display: inline-block;
    padding: 10px 6px;
    color: inherit;
    text-decoration: none;
}

/* Active state */
.tb-tab.active a {
    font-weight: 700;
    /* keep existing underline/indicator styles as needed */
}

/* Optional: hide heavy native scrollbar but keep scrolling usable */
.tabs {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgba(255,255,255,0.12) transparent;
}
.tabs::-webkit-scrollbar { height: 8px; }
.tabs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 8px; }

/* Optional: make the active tab more visible on small screens */
@media (max-width: 640px) {
    .tabs { gap: 12px; padding: 0 8px; }
    .tb-tab a { padding: 8px 6px; font-size: 14px; }
}
