/* COPY FROM DE (DEV BUILD) */

#wrapper {
    margin-top: 0;
}

.landing-hero {
    background: linear-gradient(to right, #fff7ed, #fffbeb);
    border-bottom: 1px solid #e5e7eb;
}

.landing-hero__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1.5rem 0;
    position: relative;
}

@media (max-width: 1024px) {
    .landing-hero__inner {
        /* padding: 4rem 5vw; */
        padding: 2rem 5vw;
    }
}

.landing-hero__content {
    max-width: 58rem;
}

.landing-hero__heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.landing-hero__icon {
    /* width: 1.25rem;
    height: 1.25rem; */
    font-size: 1.25rem;
    color: #e07c35;
    flex-shrink: 0;
}

.landing-hero__label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ea580c;
}

.landing-hero__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .landing-hero__title {
        font-size: 3rem;
    }
}

.landing-hero__desc {
    max-width: 48rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #4b5563;
    /* desktop */
    /* margin-bottom: 2rem; */
    /* mobile */
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .landing-hero__desc {
        font-size: 1.25rem;
        line-height: 1.75;
    }
}

.landing-hero__buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.landing-hero__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.landing-hero__btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.landing-hero__btn.--primary {
    background-color: #e07c35;
    color: #fff;
}

.landing-hero__btn.--primary:hover {
    background-color: #ea580c;
}

.landing-hero__btn.--secondary {
    border: 2px solid #d1d5db;
    color: #111827;
}

.landing-hero__btn.--secondary:hover {
    border-color: #e07c35;
    color: #e07c35;
}

.landing-features {
    /* background-color: #fff; */
    background-color: transparent;
    border-top: 1px solid #e07c35;
    position: relative;
    margin-top: 0;
}

@media (min-width: 1024px) {
    .landing-features {
        margin-top: 4rem;
    }
}


.landing-features__inner {
    max-width: 80rem;
    margin: 0 auto;
    /* padding: 1rem 5vw; */
    padding: 2rem 5vw;
}

@media (min-width: 1024px) {
    .landing-features__inner {
        padding: 1.5rem;
    }
}

.landing-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .landing-features__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.landing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    /* --- Modifiers --- */
}

.landing-feature__icon-wrap {
    background-color: #ffedd5;
    padding: 0.5rem;
    border-radius: 8px;
    flex-shrink: 0;
    line-height: 0;
}

.landing-feature__icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #ea580c;
}

.landing-feature__content {
    flex: 1;
}

.landing-feature__title {
    font-weight: 900;
    color: #111827;
    margin-bottom: 0.25rem;
}

.landing-feature__desc {
    font-size: 0.875rem;
    color: #4b5563;
}

.landing-feature.--highlighted {
    background-color: #fff7ed;
    border-radius: 8px;
    padding: 1rem;
}

.landing-grid__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 0;
}

.landing-grid__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .landing-grid__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .landing-grid__list {
        grid-template-columns: repeat(3, 1fr);
    }
}


/** FAQ **/

/* SECTION */
.faq {
    /* background-color: #f9fafb; */
    padding: 3rem 0;
    /* py-24 */
}

/* CONTAINER */
.faq__container {
    max-width: 768px;
    /* max-w-3xl */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* TITLE */
/* .faq__title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 900;
    color: #111827;
} */

/* LIST */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* space-y-4 */
}

/* ITEM */
.faq__item {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background-color: #ffffff;
}

/* QUESTION */
.faq__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq__question-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

/* ANSWER */
.faq__answer {
    padding: 1.5rem;
    background-color: #f9fafb;
    /* background-color: #d9dfe5; */
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

/* ACCORDION LOGIC */

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

/* otwarcie po focusie */
.accordion-item:focus-within .accordion-content {
    max-height: 300px;
    /* zwiększ jeśli odpowiedzi będą dłuższe */
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* obrót strzałki */
.accordion-item:focus-within .chevron {
    transform: rotate(180deg);
}

/* focus UX */
.faq__question:focus {
    outline: none;
    background-color: #f9fafb;
}


/** end FAQ **/




/* TODO: convert from wp */

.page-template-collections .content-area {
    padding: 0;
    margin: 0 5vw;
}

@media (min-width: 767px) {
    .page-template-collections .content-area {
        margin: 0 20px;
    }
}

.page-template-collections .site-main {
    overflow: initial;
    margin-bottom: 0;
}

/* end TODO */





/**
 * Stitch page
 */

/** Story section **/

.story {
    background-color: #ffffff;
    padding: 3rem 0;
}

/* CONTAINER */
.story__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* GRID */
.story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

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

/* IMAGE */
.story__image-wrapper {
    position: relative;
}

.story__decor-circle {
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
    width: 10rem;
    height: 10rem;
    background-color: #3b82f6;
    /* accent blue */
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.story__image {
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* BADGE */
.story__badge {
    position: absolute;
    /* left: 0.5rem; */
    right: -1.5rem;
    bottom: -1.5rem;
    background-color: #e07c35;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    display: none;
}

.story__badge,
.story__badge * {
    color: #ffffff;
    text-align: center;
}

@media (min-width: 768px) {
    .story__badge {
        display: block;
    }
}

.story__badge-years {
    font-size: 1.875rem;
    font-weight: 900;
}

.story__badge-text {
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    opacity: 0.8;
}

/* CONTENT */
.story__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story__title,
.partnership__title,
.stats__title,
.benefits__title,
.payments__title,
.logistics__title,
.rest__title,
.assortment__title,
.faq__title,
.section-cta__title {
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 900;
    color: #111827;
    /* text main */
}

.story__title {
    margin: 0;
}

@media (min-width: 640px) {
    .story__title,
    .partnership__title,
    .stats__title,
    .benefits__title,
    .payments__title,
    .logistics__title,
    .rest__title,
    .assortment__title,
    .faq__title,
    .section-cta__title {
        font-size: 2.25rem;
    }
}

.story__text {
    margin-bottom: 0;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #6b7280;
    /* text muted */
}

/* HIGHLIGHT */
.story__highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* padding-top: 1rem; */
    color: #e07c35;
    font-weight: 700;
}

.story__icon {
    font-size: 2.25rem;
}

.story__highlight-text {
    color: #e07c35;
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0;
}

/** end story section **/



/** REST section **/
/* SECTION */
.rest {
    background-color: #fff;
    /* border-top: 1px solid; */
    /* accent blue */
    border-bottom: 1px solid rgb(232 241 249 / 1);
    /* border-color: rgb(232 241 249 / 1); */
    padding: 3rem 0;
    /* py-24 */
}

/* CONTAINER */
.rest__container {
    max-width: 896px;
    /* max-w-4xl */
    margin: 0 auto;
    padding: 0 1.5rem;
    /* px-6 */
    text-align: center;
}

/* ICON */
.rest__icon-wrapper {
    width: 6rem;
    /* w-24 */
    height: 6rem;
    /* h-24 */
    margin: 0 auto 2rem;
    /* mb-8 */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(224 124 53 / 0.1);
    /* primary/10 */
    color: #111827;

    border-radius: 9999px;
}

.rest__icon {
    font-size: 3.75rem;
    color: #e07c35;
    /* text-6xl */
}

/* TITLE */
/* .rest__title {
    font-size: 2.25rem;
    font-weight: 900;
    color: #111827;
} */

/* CONTENT */
.rest__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* space-y-6 */
}

/* QUOTE */
.rest__quote {
    font-size: 1.25rem;
    /* text-xl */
    line-height: 1.75;
    /* leading-relaxed */
    font-style: italic;
    color: #6b7280;
    
}

/* DIVIDER */
.rest__divider {
    width: 6rem;
    /* w-24 */
    height: 0.25rem;
    /* h-1 */
    margin: 0 auto;
    background-color: #e07c35;

    border-radius: 9999px;
}

/* TAGLINE */
.rest__tagline {
    font-size: 1.125rem;

    font-weight: 700;
    letter-spacing: 0.1em;
    /* tracking-widest */
    text-transform: uppercase;
    color: #111827;
    /* text-main */
}

/** end REST section **/



/** REST section **/

/* SECTION */
.stats {
    background-color: #ffffff;
    padding: 3rem 0;
    /* py-24 */
}

/* CONTAINER */
.stats__container {
    max-width: 1280px;
    /* max-w-7xl */
    margin: 0 auto;
    padding: 0 1.5rem;
    /* px-6 */
}

/* HEADER */
.stats__header {
    margin-bottom: 1.5rem;
    /* mb-16 */
    text-align: center;
}

/* .stats__title {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 900;
    color: #111827;
} */

.stats__subtitle {
    max-width: 42rem;
    /* max-w-2xl */
    margin: 0 auto;
    font-size: 1.125rem;

    color: #6b7280;
    
}

/* GRID */
.stats__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    /* gap-8 */
}

@media (min-width: 640px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* CARD */
.stats__card {
    padding: 2.5rem;
    /* p-10 */
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    /* border-gray-100 */
    border-radius: 10px;

    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    /* shadow-sm */
    transition: box-shadow 0.3s ease;
}

.stats__card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    /* hover:shadow-xl */
}

/* TEXT */
.stats__value {
    margin-bottom: 0.5rem;
    /* mb-2 */
    font-size: 2rem;
    line-height: 1;
    /* text-5xl */
    font-weight: 900;
    color: #e07c35;

}

.stats__label {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;

    font-weight: 700;
    color: #111827;
    /* text-main */
}

.stats__description {
    font-size: 0.875rem;
    /* text-sm */
    color: #6b7280;
    
}

/* RATING */
.stats__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stats__star {
    font-size: 2.25rem;
    /* text-4xl */
    color: #111827;

}

/** end REST section **/


/** Payments **/

/* SECTION */
.payments {
    background-color: #ffffff;
    padding: 3rem 0;
    /* py-24 – identycznie jak inne sekcje */
}

/* CONTAINER */
.payments__container {
    max-width: 1280px;
    /* max-w-7xl */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* CONTENT */
.payments__content {
    max-width: 896px;
    /* max-w-4xl */
    margin: 0 auto;
    text-align: center;
}

/* TITLE */
.payments__title {
    margin-bottom: 1.5rem;
    /* font-size: 2.25rem;
    font-weight: 900;
    color: #111827; */
}

/* DESCRIPTION */
.payments__description {
    margin-bottom: 3rem;
    font-size: 1.125rem;

    line-height: 1.75;
    color: #6b7280;
    
}

/* LOGOS */
.payments__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payments__logos img {
    height: 32px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.payments__logos img:hover {
    opacity: 1;
}

/** end Payments **/



/** section BENEFITS **/

/* SECTION */
.benefits {
    background-color: #f9fafb;
    /* bg-background-light */
    padding: 3rem 0;
    /* py-24 */
}

/* CONTAINER */
.benefits__container {
    max-width: 1280px;
    /* max-w-7xl */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* TITLE */
.benefits__title {
    margin-bottom: 1.5rem;
    text-align: center;
    /* font-size: 2.25rem;
  font-weight: 900;
  color: #111827; */
}

/* GRID */
.benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    /* gap-8 */
}

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

/* CARD */
.benefits__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    /* p-8 */
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    /* shadow-sm */
}

/* ICON */
.benefits__icon-wrapper {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffedd5;
    color: #e07c35;
    border-radius: 8px;
}

.benefits__icon {
    font-size: 2.25rem;
    /* text-4xl */
}

/* TEXT */
.benefits__card-title {
    margin-bottom: 1rem;
    /* mb-4 */
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 700;
    color: #111827;
}

.benefits__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    
}

/** end BENEFITS **/



/** DOSTAWA **/

/* SECTION */
.logistics {
    background-color: #ffffff;
    padding: 3rem 0;
    /* py-24 */
    overflow: hidden;
}

/* CONTAINER */
.logistics__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* BOX */
.logistics__box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
    background-color: #e07c35;
    border-radius: 12px;
    /* rounded-3xl */
    overflow: hidden;
}

@media (min-width: 1024px) {
    .logistics__box {
        padding: 5rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 3rem;
        /* flex-direction: row;
        align-items: center; */
    }
}

/* BACKGROUND SHAPE */
.logistics__background-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(8rem) skewX(12deg);
}

/* CONTENT */
.logistics__content {
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .logistics__content {
        /* width: 50%; */
    }
}

/* EYEBROW */
.logistics__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

/* TITLE */
/* .logistics__title {
  margin-bottom: 2rem;
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 900;
  color: #ffffff;
} */
.logistics__title {
    color: #ffffff;
}

/* DESCRIPTION */
.logistics__description {
    margin-bottom: 0;
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
    .logistics__description {
        margin-bottom: 2rem;
    }
}

/* STATS */
.logistics__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* @media (min-width: 768px) { */
@media (min-width: 1024px) {
    .logistics__stats {
        grid-area: 2 / 1;
        grid-template-columns: repeat(2, 1fr);
    }
}

.logistics__stat {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.logistics__stat-value {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.logistics__stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* IMAGE */
.logistics__image-wrapper {
    position: relative;
    z-index: 2;
    margin: 0 -5rem -5rem;
    /* grid-area: 2 / 1; */
}

@media (min-width: 1024px) {
    .logistics__image-wrapper {
        /* width: 50%; */
    }
}

@media (min-width: 768px) {
    .logistics__image-wrapper {
        /* grid-area: auto; */
    }
}

@media (min-width: 640px) {
    .logistics__image-wrapper {
        margin: 0 auto;
    }
}

.logistics__image {
    width: 100%;
    border-radius: 10px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -24px rgba(0, 0, 0, 0.4);
}

@media (min-width: 640px) {
    .logistics__image {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    }
}

/** end DOSTAWA **/



/** Asostyment **/

/* SECTION */
.assortment {
    background-color: rgb(232 241 249 / 0.3);
    padding: 3rem 0;
    /* py-24 */
}

/* CONTAINER */
.assortment__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* GRID */
.assortment__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .assortment__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* IMAGE */
.assortment__image-wrapper {
    position: relative;
}

.assortment__image {
    /* width: 100%; */
    height: 100%;
    width: calc(100% + 3rem);
    max-height: 520px;
    margin: 0 -1.5rem;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 480px) {
    .assortment__image {
        width: 100%;
        margin: 0;
        border-radius: 10px;
    }
}

/* CONTENT */
.assortment__content {
    max-width: 520px;
}

/* .assortment__title {
    font-size: 2.25rem;
    line-height: 1.25;
    font-weight: 900;
    color: #111827;
} */

.assortment__intro {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #6b7280;
}

/* LIST */
.assortment__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1.25rem;
    color: #374151;
    list-style: disc;
}

.assortment__list li {
    line-height: 1.7;
}

.assortment__list strong {
    color: #111827;
}

/** end asortyment **/



/** partnerstwo **/

/* SECTION */
.partnership {
    background-color: #f9fafb;
    /* bg-background-light */
    padding: 3rem 0;
    /* py-24 */
}

/* CONTAINER */
.partnership__container {
    max-width: 1024px;
    /* max-w-5xl */
    margin: 0 auto;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .partnership__container {
        padding: 0 1.5rem;
    }
}

/* BOX */
.partnership__box {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    /* border-gray-100 */
    border-radius: 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    /* shadow-xl */
}

@media (min-width: 768px) {
    .partnership__box {
        padding: 3rem 5rem;
    }
}

/* TITLE */
/* .partnership__title {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 900;
  color: #111827;
}

@media (min-width: 768px) {
  .partnership__title {
    font-size: 3rem;
  }
} */

.partnership__title,
.stats__title,
.logistics__title,
.rest__title,
.assortment__title,
.faq__title {
    margin-bottom: 1.5rem;
}

/* TEXT */
.partnership__text {
    max-width: 768px;
    /* max-w-3xl */
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    /* text-xl */
    line-height: 1.75;
    color: #6b7280;
    
}

.partnership__text--spaced {
    /* margin-bottom: 3rem; */
    margin-bottom: 1.5rem;
}

/* EMAIL LINK */
.partnership__email {
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    overflow-wrap: break-word;
}

.partnership__email:hover {
    text-decoration: underline;
}

/* CTA */
.partnership__cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    /* px-12 py-5 */
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
    background-color: #e07c35;
    border-radius: 1rem;
    /* rounded-2xl */
    text-decoration: none;
    box-shadow: 0 25px 50px -12px rgba(17, 24, 39, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.partnership__cta:hover {
    transform: scale(1.05);
    background-color: #1f2937;
    /* darker primary */
}

/** end partnerstwo **/



/** CTA section **/

.section-cta {
    background: linear-gradient(to right, rgb(232.5914634146, 139.3719512195, 56.9085365854), rgb(245.4578313253, 176.2771084337, 66.5421686747));
    color: #fff;
}

.section-cta__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.section-cta__content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.section-cta__title {
    color: #fff;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-cta__desc {
    margin-bottom: 2rem;
}

.section-cta__desc * {
    font-size: 1.125rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.section-cta__button {
    background-color: #fff;
    color: #ea580c;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.section-cta__button:hover {
    background-color: #f3f4f6;
}

.section-cta.--alt {
    background: linear-gradient(to right, #0f172a, #1e293b);
    color: #fff;
}

.section-cta.--alt .section-cta__button {
    background-color: #e07c35;
    color: #fff;
}

.section-cta.--alt .section-cta__button:hover {
    background-color: #ea580c;
}

/** end CTA section **/



.mui-1o8jq0h {
    position: relative;
    /* padding-top: 48px;
    padding-bottom: 48px; */
    width: 100%;
}

/* @media (min-width: 0px) {
    .mui-1o8jq0h {
        height:350px;
    }
} */

/* @media (min-width: 600px) {
    .mui-1o8jq0h {
        height:420px;
    }
} */

mui-1q3td93::after {
    background-color: #00000040;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

.mui-160y8hr {
    object-fit: cover;
}

@media (min-width: 900px) {
    .mui-160y8hr {
        object-position: 50% 15%;
    }
}