/* ==========================================================================
   SBI Page Builder — front-end block styles
   Brand: navy #0C447C · green #267043 · light green #5DA12C · accent #e67e22
   ========================================================================== */

:root {
    --pb-navy: #5DA12C;
    --pb-green: #5DA12C;
    --pb-green-light: #5DA12C;
    --pb-accent: #FF9811;
    --pb-ink: #0f172a;
    --pb-muted: #64748b;
    --pb-border: #EDEDED;
    --pb-bg: #f1f5f9;
    --pb-bg-soft: #f8fafc;
}

.pb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.pb-container--narrow {
    max-width: 820px;
}

.pb-section-head {
    text-align: center;
    margin-bottom: 32px;
}

.pb-section-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--pb-ink);
    margin: 0 0 8px;
    letter-spacing: -.02em;
}

.pb-section-title .pb-accent {
    color: var(--pb-green-light);
}

.pb-accent {
    color: var(--pb-green-light);
}

.pb-section-sub {
    color: var(--pb-muted);
    font-size: 15px;
    margin: 0;
}

.pb-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pb-green);
    background: #ecfdf5;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

/* Buttons ---------------------------------------------------------------- */
.pb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .15s;
}
 .shop-now-arrow-set .pb-btn::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M3 10L16 10' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 5L17 10L12 15' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
 }
.pb-btn--primary {
    background: var(--pb-navy);
    color: #fff;
}

.pb-btn--primary:hover {
    background: #0a3a6a;
    color: #fff;
}

.pb-btn--accent {
    background: var(--pb-accent);
    color: #fff;
}

.pb-btn--accent:hover {
    filter: brightness(.94);
    color: #fff;
}

.pb-btn--ghost {
    background: #fff;
    color: var(--pb-navy);
    border-color: var(--pb-navy);
}

.pb-btn--ghost:hover {
    border-color: var(--pb-navy);
    color: var(--pb-navy);
    background :var(--pb-navy);
    color: #fff;
}

.pb-btn--block {
    width: 100%;
    justify-content: center;
}

/* Hero ------------------------------------------------------------------- */
.pb-hero {
    position: relative;
    background: linear-gradient(135deg, var(--pb-navy), var(--pb-green));
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 90px 0;
}

.pb-hero--overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 30, 56, .55);
}

.pb-hero__inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.pb-hero__badge {
    display: inline-block;
    background: var(--pb-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.pb-hero__title {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.1;
}

.pb-hero__subtitle {
    font-size: 17px;
    opacity: .92;
    margin: 0 0 26px;
}

.pb-hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quick-action bar ------------------------------------------------------- */
.pb-ctabar {
    background: var(--pb-green-light);
}

.pb-ctabar__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}

.pb-ctabar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background .15s;
}

.pb-ctabar__item:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.pb-ctabar__item i {
    font-size: 18px;
}

/* Welcome ---------------------------------------------------------------- */
.pb-welcome {
    padding: 70px 0;
    background: #fff;
}

.pb-welcome__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.pb-welcome__body {
    color: var(--pb-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 22px;
}

.pb-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.pb-stats__item {
    background: var(--pb-bg-soft);
    border: 1px solid var(--pb-border);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.pb-stats__value {
    font-size: 26px;
    font-weight: 800;
    color: var(--pb-green-light);
}

.pb-stats__label {
    font-size: 12px;
    color: var(--pb-muted);
    font-weight: 600;
}

.pb-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pb-checklist li {
    font-size: 14px;
    color: var(--pb-ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pb-checklist i {
    color: var(--pb-green);
}

.pb-welcome__cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pb-welcome__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--pb-navy);
    text-decoration: none;
}

.pb-welcome__media img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

.pb-welcome__placeholder {
    aspect-ratio: 4/3;
    border-radius: 14px;
    background: var(--pb-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #cbd5e1;
}

/* Cards ------------------------------------------------------------------ */
.pb-cards {
    padding: 64px 0;
    background: var(--pb-bg);
}

.pb-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pb-card {
    background: #fff;
    border: 1px solid var(--pb-border);
    border-radius: 12px;
    padding: 26px 22px;
    text-align: center;
    transition: all .15s;
}

.pb-card:hover {
    box-shadow: 0 8px 24px rgba(12, 68, 124, .1);
    transform: translateY(-3px);
}

.pb-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #eef5ff;
    color: var(--pb-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.pb-card__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
}

.pb-card__text {
    font-size: 13px;
    color: var(--pb-muted);
    margin: 0 0 14px;
}

.pb-card__link {
    font-size: 13px;
    font-weight: 700;
    color: var(--pb-green-light);
    text-decoration: none;
}

/* Ticker ----------------------------------------------------------------- */
.pb-ticker {
    background: var(--pb-ink);
    overflow: hidden;
    padding: 12px 0;
}

.pb-ticker__track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: pb-ticker 30s linear infinite;
}

.pb-ticker__item {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pb-ticker__item i {
    font-size: 5px;
    color: var(--pb-green-light);
}

@keyframes pb-ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* News ------------------------------------------------------------------- */
.pb-news {
    padding: 64px 0;
    background: var(--pb-bg-soft);
}

.pb-news__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pb-news__item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--pb-border);
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    transition: all .15s;
}

.pb-news__item:hover {
    border-color: var(--pb-navy);
    box-shadow: 0 6px 18px rgba(12, 68, 124, .08);
}

.pb-news__thumb {
    width: 92px;
    height: 70px;
    border-radius: 8px;
    background: var(--pb-bg);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    overflow: hidden;
}

.pb-news__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pb-news__body {
    flex: 1;
    min-width: 0;
}

.pb-news__cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--pb-navy);
    background: #eef5ff;
    padding: 2px 8px;
    border-radius: 10px;
    margin-right: 6px;
}

.pb-news__date {
    font-size: 14px;
    color: var(--pb-muted);
}

.pb-news__title {
    font-size: 14px;
    font-weight: 700;
    margin: 6px 0 0;
}

.pb-news__arrow {
    color: var(--pb-muted);
}

.pb-news__more,
.pb-products__more {
    text-align: center;
    margin-top: 28px;
}

/* Green-outlined "Browse all" button (overrides the transparent .pb-btn border). */
.pb-products__more .pb-btn {
    background: #fff;
    color: var(--pb-green);
    border: 2px solid var(--pb-green);
}
.pb-products__more .pb-btn:hover {
    background: var(--pb-green);
    color: #fff;
}

.pb-news__empty {
    text-align: center;
    color: var(--pb-muted);
}

/* Icon grid -------------------------------------------------------------- */
.pb-icongrid {
    padding: 56px 0;
    background: var(--pb-bg);
}

.pb-icongrid__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.pb-icongrid__item {
    background: #fff;
    border: 1px solid var(--pb-border);
    border-radius: 12px;
    padding: 22px 10px;
    text-align: center;
    text-decoration: none;
    color: var(--pb-ink);
    transition: all .15s;
}

.pb-icongrid__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(12, 68, 124, .08);
}

.pb-icongrid__icon {
    font-size: 24px;
    color: var(--pb-navy);
    margin-bottom: 10px;
}

.pb-icongrid__title {
    font-size: 13px;
    font-weight: 700;
}

/* Feature band (dark) ---------------------------------------------------- */
.pb-band {
    padding: 64px 0;
    background: var(--pb-ink);
    color: #fff;
}

.pb-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.pb-band__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--pb-accent);
    margin-bottom: 12px;
}

.pb-band__title {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 12px;
}

.pb-band__body {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.pb-band__products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;  
}

.pb-band__product {
    border-radius: 20px;
    padding: 14px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, #2A6003 0%, #163102 100%) 
}

.pb-band__thumb {
    aspect-ratio: 4/3;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 10px;
    overflow: hidden;
}

.pb-band__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pb-band__product:nth-child(2){
    margin-top: 31px;
}
.pb-band__product:nth-child(3){
  margin-top: 60px;
}
.pb-band__product{
    text-align: left !important;
}

.pb-band__product:nth-child(1) .pb-band__thumb {
    aspect-ratio: 2.6 / 3;
}
.pb-band__product:nth-child(2) .pb-band__thumb {
    aspect-ratio: 3 / 3;
}

.pb-band__pname {
    font-size: 14px;
    font-weight: 600;
}

.pb-band__price {
    font-size: 18px;
    font-weight: 600;
    color: var(--pb-accent);
}

/* Featured products ------------------------------------------------------ */
.pb-products {
    padding: 20px 0;
    background: #fff;
}

.pb-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pb-product {
    border: 1px solid var(--pb-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all .15s;
    padding:10px;
}

.pb-product:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    border-color: #5DA12C;
}

.pb-product__thumb {
    aspect-ratio: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #cbd5e1;
    padding: 20px;
    border-bottom: 1px solid var(--pb-border);
    background: #F5F6F4;
     border-radius: 12px;
}

.pb-product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pb-product__body {
    padding: 0;
    text-align: left;
    margin-top: 18px;
}

.pb-product__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #14210f;
    padding: 0 10px;
}

.pb-product__prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    padding: 0 10px;
}

.pb-product__price {
    font-size: 20px;
    font-weight: 700;
    color: var(--pb-green);
}

.pb-product__old {
    font-size: 13px;
    color: var(--pb-muted);
    text-decoration: line-through;
}

/* Rich text -------------------------------------------------------------- */
.pb-richtext {
    padding: 56px 0;
    background: #fff;
}

.pb-richtext__body {
    color: var(--pb-muted);
    font-size: 16px;
    line-height: 1.8;
}

/* Builder preview helper ------------------------------------------------- */
.pb-missing {
    padding: 24px 0;
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    font-size: 14px;
}

.pb-missing code {
    background: rgba(0, 0, 0, .06);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 980px) {

    .pb-cards__grid,
    .pb-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pb-icongrid__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pb-welcome__grid,
    .pb-band__grid {
        grid-template-columns: 1fr;
    }

    .pb-news__grid {
        grid-template-columns: 1fr;
    }

    .pb-band__products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .pb-ctabar__inner {
        grid-template-columns: 1fr;
    }

    .pb-cards__grid,
    .pb-products__grid,
    .pb-icongrid__grid,
    .pb-checklist,
    .pb-stats {
        grid-template-columns: 1fr;
    }

    .pb-hero__title {
        font-size: 32px;
    }

    .pb-band__products {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   v2 — exact homepage design: news hero, live stats, news filter layout
   ========================================================================== */

.pb-btn--sm {
    padding: 8px 16px;
    font-size: 13px;
}

.pb-btn--green {
    background: var(--pb-green);
    color: #fff;
}

.pb-btn--green:hover {
    background: #1f5c37;
    color: #fff;
}

.pb-tag-green {
    display: inline-block;
    padding: 7px 14px;
    background: rgba(93, 161, 44, 1) !important;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.pb-welcome__heading {
    color: var(--pb-navy);
}

/* News hero -------------------------------------------------------------- */
.pb-newshero {
    padding: 22px 0;
    background: var(--pb-bg);
}

.pb-newshero__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
    height: 420px;
}

.pb-newshero__feature,
.pb-newshero__card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background-color: #1e293b;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: #fff;
}

.pb-newshero__side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}

.pb-newshero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 20, 40, .85) 0%, rgba(8, 20, 40, .15) 55%, rgba(8, 20, 40, .05) 100%);
}

.pb-newshero__badges {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: flex;
    gap: 6px;
}

.pb-newshero__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 22px;
}

.pb-newshero__caption--sm {
    padding: 14px;
}

.pb-newshero__date {
    font-size: 11px;
    font-weight: 600;
    opacity: .9;
}

.pb-newshero__title {
    font-size: 24px;
    font-weight: 800;
    margin: 6px 0 8px;
    line-height: 1.2;
}

.pb-newshero__ctitle {
    font-size: 15px;
    font-weight: 700;
    margin: 6px 0 0;
    line-height: 1.25;
}

.pb-newshero__excerpt {
    font-size: 13px;
    opacity: .9;
    margin: 0 0 12px;
    max-width: 80%;
}

.pb-newshero__card--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: #e2e8f0;
}

/* Welcome — stats / badge / satisfaction --------------------------------- */
.pb-stats__item {
    position: relative;
}

.pb-stats__icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #eef5ff;
    color: var(--pb-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin: 0 auto 8px;
}

.pb-stats__item:nth-child(2) .pb-stats__icon {
    background: #fef3e7;
    color: var(--pb-accent);
}

.pb-stats__item:nth-child(3) .pb-stats__icon {
    background: #ecfdf5;
    color: var(--pb-green);
}

.pb-welcome__media {
    position: relative;
}

.pb-welcome__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--pb-green);
    color: #fff;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
}

.pb-welcome__badge-value {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.pb-welcome__badge-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: .9;
}

.pb-welcome__satisfaction {
    position: absolute;
    left: 18px;
    bottom: -16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--pb-ink);
}

.pb-welcome__satisfaction i {
    color: var(--pb-green);
}

.pb-welcome__phone-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--pb-green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* News section — filters + featured layout -------------------------------- */
.pb-news__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}

.pb-pill {
    border: 1px solid var(--pb-border);
    background: #fff;
    color: var(--pb-ink);
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .12s;
}

.pb-pill:hover {
    border-color: var(--pb-green-light);
    color: var(--pb-green);
}

.pb-pill.is-active {
    background: var(--pb-green-light);
    border-color: var(--pb-green-light);
    color: #fff;
}

.pb-news__layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: start;
}

.pb-news__feature {
    display: block;
    background: #fff;
    border: 1px solid var(--pb-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .15s;
}

.pb-news__feature:hover {
    box-shadow: 0 12px 30px rgba(12, 68, 124, .12);
}

.pb-news__feature-img {
    position: relative;
    aspect-ratio: 16/9;
    background: #1e293b;
    background-size: cover;
    background-position: center;
}

.pb-news__feature-cat {
    position: absolute;
    top: 12px;
    left: 12px;
}

.pb-news__feature-body {
    padding: 18px;
}

.pb-news__feature-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--pb-navy);
    margin: 6px 0 8px;
    line-height: 1.25;
}

.pb-news__feature-ex {
    font-size: 14px;
    color: var(--pb-muted);
    margin: 0 0 12px;
    line-height: 1.6;
}

.pb-news__readmore {
    color: var(--pb-green);
    font-weight: 700;
    font-size: 14px;
}

.pb-news__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* responsive overrides for v2 -------------------------------------------- */
@media (max-width: 980px) {
    .pb-newshero__grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .pb-newshero__feature {
        height: 280px;
    }

    .pb-newshero__side {
        grid-template-rows: none;
        grid-template-columns: 1fr 1fr;
    }

    .pb-newshero__card {
        height: 200px;
    }

    .pb-news__layout {
        grid-template-columns: 1fr;
    }
    .pb-news__filters {
        flex-wrap: nowrap;
        justify-content: start;
        margin: 0;
    }
    .pb-news__filters-wrap {
        overflow: auto;
        padding-bottom: 15px;
        margin-bottom:28px;
    }
}

@media (max-width: 600px) {
    .pb-newshero__side {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   v3 — exact-match polish: serif headings, stat panel, overlay news, icons
   ========================================================================== */

.pb-section-title,
.pb-welcome__heading,
.pb-newshero__title,
.pb-news__feature-title,
.pb-band__title {
    font-weight: 700;
    letter-spacing: 0;
}

.pb-section-title {
    color: #111827;
}

.pb-section-sub {
    font-size: 16px;
}

/* Uploaded-icon images sit inside the tinted icon containers -------------- */
/* .pb-iconimg {
    width: 60%;
    height: 60%;
    object-fit: contain;
} */

.pb-ctabar__icon .pb-iconimg {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.pb-ctabar__icon {
    display: inline-flex;
}


/* Welcome — single stat panel + orange phone ----------------------------- */
.pb-stats {
    display: flex;
    gap: 0;
    background: #f8fafc;
    border: 1px solid var(--pb-border);
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
}

.pb-stats__item {
    flex: 1;
    background: transparent !important;
    border: none !important;
    border-right: 1px solid var(--pb-border) !important;
    border-radius: 0;
    padding: 20px 12px;
    text-align: center;
}

.pb-stats__item:last-child {
    border-right: none !important;
}

.pb-stats__value {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.pb-welcome__phone-icon {
    background: var(--pb-accent);
}

/* News — overlay featured card ------------------------------------------- */
.pb-news__feature {
    position: relative;
    display: block;
    height: 100%;
    min-height: 420px;
    border-radius: 14px;
    overflow: hidden;
    border: none;
    background-color: #1e293b;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.pb-news__feature:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
}

.pb-news__feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(17, 36, 3, 1) 100%);
    top: 57%;
}

.pb-news__feature-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pb-news__feature-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 26px;
}

.pb-news__feature-caption .pb-news__date {
    color: #fff;
    opacity: .9;
}

.pb-news__feature-title {
    color: #fff;
    font-size: 24px;
    margin: 8px 0 8px;
    line-height: 1.2;
}

.pb-news__feature-ex {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    margin: 0 0 14px;
    max-width: 90%;
    line-height: 1.6;
}

.pb-news__readmore {
    color: var(--pb-accent);
    font-weight: 700;
    font-size: 14px;
}

/* News list cards --------------------------------------------------------- */
.pb-news {
    background: #fff;
}

.pb-news__item {
    border-color: #eef1f5;
    border-radius: 14px;
    padding: 14px;
    background: #F8F8F8;
}

.pb-news__thumb {
    width: 110px;
    height: 84px;
    border-radius: 10px;
}

.pb-news__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.pb-news__cat {
    margin-right: 0;
}

.pb-news__title {
    font-size: 16px;
}

/* Filter pills ------------------------------------------------------------ */
.pb-pill {.pb-band__eyebrow
    padding: 8px 18px;
    border-radius: 22px;
}

/* Feature band ------------------------------------------------------------ */
.pb-band {
    background: #131413;
}

.pb-band__eyebrow {
    display: inline-block;
    background: rgba(230, 126, 34, .15);
    color: var(--pb-accent);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
}
.pb-band__title span {
    color: #fff !important;
}
.pb-band__title {
    font-size: 40px;
}

/* Cards ------------------------------------------------------------------- */
.pb-cards__grid {
    gap: 20px;
}

.pb-card {
    padding: 28px 24px;
    border-radius: 14px;
}

.pb-card__title {
    font-size: 18px;
}

/* Reports tiles ----------------------------------------------------------- */
.pb-icongrid__item {
    padding: 26px 12px;
    border-radius: 14px;
}

.pb-icongrid__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 12px;
}

.pb-icongrid__title {
    font-size: 14px;
}

/* Featured products ------------------------------------------------------- */
.pb-products__grid {
    gap: 20px;
}

.pb-product {
    border-radius: 20px;
}

.pb-product__price {
    color: var(--pb-green);
}

/* ==========================================================================
   v4 — Events Calendar page blocks (page_hero, events_calendar, news_cards, footer_cta)
   ========================================================================== */

/* Page hero (solid colour) ----------------------------------------------- */
.pb-phero {
    color: #fff;
    padding: 60px 0;
}

.pb-phero__inner {
    text-align: center;
}

.pb-phero__title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

.pb-phero__title--italic {
    font-style: italic;
}

.pb-phero__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 500;
    opacity: .95;
}

.pb-phero__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pb-phero__btn {
    padding: 13px 28px;
    font-size: 16px;
}

.pb-phero__btn-icon {
    display: inline-flex;
    line-height: 0;
}

.pb-phero__btn-icon .pb-iconimg {
    width: 18px;
    height: 18px;
}

.pb-phero__btn--orange {
    background: #ff9811;
    color: #fff;
}

.pb-phero__btn--orange:hover {
    background: #e07f0a;
    color: #fff;
}

.pb-phero__btn--outline {
    background: rgba(40, 85, 7, 1);
    border: 1px solid rgba(76, 120, 44, 1);
    color: #fff;
}

/* Events calendar -------------------------------------------------------- */
.pb-ec {
    padding: 0 0 40px;
}

.pb-ec__filters {
    background: #f9f9f9;
    border-bottom: 1px solid #e9e9e9;
    padding: 24px;
    border-radius: 0;
    display: flex;
    gap: 16px;
    flex-direction: column;
    margin: 0 -20px 30px;
}

.pb-ec__search {
    position: relative;
    flex: 1;
}

.pb-ec__search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #686968;
}

.pb-ec__input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    font-size: 14px;
}

.pb-ec__selects {
    display: flex;
    gap: 12px;
}

.pb-ec__select {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--pb-border);
    background: #fff;
    font-size: 14px;
    min-width: 150px;
    cursor: pointer;
}

.pb-ec__pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pb-ec__pill {
    background: #fff;
    border: 1px solid #e9e9e9;
    color: #131413;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
}

.pb-ec__pill-count {
    color: #686968;
}

.pb-ec__pill:hover {
    background: #f8fafc;
}

.pb-ec__pill.is-active {
    background: #5da12c;
    border-color: #5da12c;
    color: #fff;
}

.pb-ec__pill.is-active .pb-ec__pill-count {
    color: #fff;
}

.pb-ec__acc {
    border: 1px solid var(--pb-border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #fff;
    transition: background-color .3s, border-color .3s;
}

.pb-ec__acc-head {
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.pb-ec__acc-title-block {
    display: flex;
    align-items: flex-start;
}

.pb-ec__month {
    font-size: 22px;
    font-weight: 700;
    color: #131413;
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1;
    transition: color .3s;
}

.pb-ec__year {
    font-size: 12px;
    color: #686968;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.pb-ec__badge {
    background: #e6f2dd;
    color: #5da12c;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 50px;
    margin-left: 12px;
}

.pb-ec__acc-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #131413;
    transition: transform .3s, color .3s;
}

.pb-ec__acc.is-open .pb-ec__acc-arrow {
    transform: rotate(180deg);
}

/* open state */
.pb-ec__acc.is-open {
    background: #193c00;
    border-color: #193c00;
}

.pb-ec__acc.is-open .pb-ec__month,
.pb-ec__acc.is-open .pb-ec__year,
.pb-ec__acc.is-open .pb-ec__acc-arrow {
    color: #fff;
}

.pb-ec__acc-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s cubic-bezier(.4, 0, .2, 1);
}

.pb-ec__acc.is-open .pb-ec__acc-wrap {
    grid-template-rows: 1fr;
}

.pb-ec__acc-content {
    overflow: hidden;
    padding: 0 24px;
    background: #193c00;
}

.pb-ec__table {
    background: #fff;
    border-radius: 10px;
    margin: 0 0 24px;
    border: 1px solid #e9e9e9;
    overflow: hidden;
}

.pb-ec__grid-head {
    display: none;
}

.pb-ec__row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.pb-ec__row:last-child {
    border-bottom: none;
}

.pb-ec__mlabel {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--pb-muted);
    text-transform: uppercase;
    min-width: 60px;
    margin-right: 8px;
}

.pb-ec__event {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pb-ec__tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
}

.pb-ec__name {
    font-weight: 500;
    color: #131413;
    font-size: 14px;
}

.pb-ec__venue,
.pb-ec__td {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #131413;
    font-weight: 500;
}

.pb-ec__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    flex-shrink: 0;
}

.pb-ec__register {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #5da12c;
    color: #5da12c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s;
}

.pb-ec__register:hover {
    background: var(--pb-light-bg-green, #eef7ee);
    color: #5da12c;
}

.pb-ec__empty {
    text-align: center;
    color: var(--pb-muted);
    padding: 30px;
}

@media (min-width: 868px) {
    .pb-ec__filters {
        flex-direction: row;
        align-items: center;
    }

    .pb-ec__mlabel {
        display: none;
    }

    .pb-ec__grid-head {
        display: grid;
        grid-template-columns: 100px 1fr 220px 180px 110px;
        align-items: center;
        gap: 20px;
        padding: 18px 20px;
        border-bottom: 2px solid #5da12c;
    }

    .pb-ec__grid-head div {
        font-size: 13px;
        font-weight: 700;
        color: #686968;
        letter-spacing: .5px;
    }

    .pb-ec__row {
        display: grid;
        grid-template-columns: 100px 1fr 220px 180px 110px;
        align-items: center;
        gap: 20px;
        padding: 22px 20px;
    }

    .pb-ec__action {
        text-align: right;
    }
}

/* News cards (image + category label) ------------------------------------ */
.pb-newscards {
    padding: 60px 0;
    background: #fff;
}

.pb-newscards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pb-newscards__card {
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.pb-newscards__img {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
    background: var(--pb-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #cbd5e1;
}

.pb-newscards__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.pb-newscards__card:hover .pb-newscards__img img {
    transform: scale(1.05);
}

.pb-newscards__label {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

@media (min-width: 768px) {
    .pb-newscards__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .pb-newscards__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Footer CTA (dark) ------------------------------------------------------ */
.pb-fcta {
    color: #fff;
    padding: 40px 0;
}

.pb-fcta__flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pb-fcta__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pb-fcta__subtitle {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    font-weight: 500;
}

.pb-fcta__btn {
    background: #52a425;
    color: #fff;
    padding: 14px 28px;
    font-weight: 700;
}

.pb-fcta__btn:hover {
    background: #468c1f;
    color: #fff;
}
.text-height-set .pb-text {
    height: 47px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .pb-fcta__flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
#pb-el-222 .pb-text {
    height: 47px;
    overflow: hidden;
}
@media (max-width: 868px) {
.pb-band__title{
    font-size: 30px;   
} 
.pb-btn{
    font-size:14px;
}
.pb-band__grid{
    gap:30px;
}
.pb-band__products {
    grid-template-columns: repeat(2, 1fr);
}
.pb-band__product:nth-child(2) {
    margin-top: 0;
}
.pb-band__product:nth-child(3) {
    margin-top: 0;
    grid-column: span 2;
}
.pb-section-title{
  font-size: 30px;     
}
}