/* ==========================================================================
   Layout: Why Choose
   ========================================================================== */

.pb-wc {
    padding: 100px 16px;
}

.pb-wc__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image right (default) --------------------------------------------------- */

.pb-wc--img-right .pb-wc__content { order: 1; }
.pb-wc--img-right .pb-wc__media   { order: 2; }

/* Image left -------------------------------------------------------------- */

.pb-wc--img-left .pb-wc__content { order: 2; }
.pb-wc--img-left .pb-wc__media   { order: 1; }

/* Content ----------------------------------------------------------------- */

.pb-wc__heading {
font-family: var(--second-family);
font-weight: 550;
font-size: 36px;
line-height: 128%;
letter-spacing: -0.02em;
background: linear-gradient(169deg, rgba(0, 5, 25, 0.9) 0%, #000519 50%, rgba(0, 5, 25, 0.9) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    margin: 0 0 24px;
}

.pb-wc__desc {
font-family: var(--font-family);
font-weight: 500;
font-size: 16px;
line-height: 150%;
letter-spacing: 0.01em;
color: var(--text-base);
    margin: 0 0 40px;
}

/* List -------------------------------------------------------------------- */

.pb-wc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Item -------------------------------------------------------------------- */

.pb-wc__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pb-wc__item-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-wc__item-icon img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

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

.pb-wc__item-label {
font-family: var(--second-family);
font-weight: 600;
font-size: 18px;
line-height: 133%;
letter-spacing: 0.01em;
color: var(--text-bold);
}

.pb-wc__item-text {
font-family: var(--font-family);
font-weight: 500;
font-size: 16px;
line-height: 150%;
letter-spacing: 0.01em;
color: var(--text-base);
    margin: 0;
}

/* Media ------------------------------------------------------------------- */

.pb-wc__media {
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
    min-height: 598px;
}

.pb-wc__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 1024px) {
    .pb-wc__inner {
        gap: 48px;
    }

    .pb-wc__heading {
        font-size: 34px;
    }
    .pb-wc__media{
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .pb-wc {
        padding: 64px 16px;
    }

    .pb-wc__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Always show content first on mobile */
    .pb-wc--img-left .pb-wc__content,
    .pb-wc--img-right .pb-wc__content {
        order: 1;
    }

    .pb-wc--img-left .pb-wc__media,
    .pb-wc--img-right .pb-wc__media {
        order: 2;
    }

    .pb-wc__heading {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .pb-wc {
        padding: 48px 16px;
    }
}
