body.home .entry-content > .pcv3-hero:first-child {
    margin-top: 0;
    max-width: 100vw !important;
}

body.home .entry-content[data-ast-blocks-layout] > .pcv3-hero {
    max-width: 100vw !important;
}

.pcv3-hero {
    --pcv3-hero-red: #6f0f15;
    --pcv3-hero-red-dark: #2a0508;
    --pcv3-hero-gold: #bf842d;
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: clamp(660px, 56vw, 930px);
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    overflow: hidden;
    isolation: isolate;
    background: #f8ead0;
}

.pcv3-hero__picture,
.pcv3-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none !important;
    display: block;
}

.pcv3-hero__picture {
    z-index: -3;
}

.pcv3-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 1;
    filter: saturate(1.04) contrast(1.04);
    transform: none;
}

.pcv3-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255, 250, 239, 0.62) 0%, rgba(255, 250, 239, 0.48) 32%, rgba(255, 250, 239, 0.12) 54%, rgba(255, 250, 239, 0) 74%),
        radial-gradient(circle at 20% 45%, rgba(255, 255, 255, 0.48), rgba(255, 246, 226, 0.14) 40%, transparent 61%);
    pointer-events: none;
}

.pcv3-hero__light {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 76% 42%, rgba(255,255,255,.26), transparent 18%),
        linear-gradient(112deg, transparent 0%, rgba(255,255,255,.24) 43%, transparent 58%);
    transform: translateX(-58%);
    opacity: .55;
    mix-blend-mode: soft-light;
    animation: pcv3HeroLight 7.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pcv3HeroLight {
    0%, 14% { transform: translateX(-58%); opacity: 0; }
    36%, 62% { opacity: .58; }
    100% { transform: translateX(52%); opacity: 0; }
}

.pcv3-hero__inner {
    width: min(100%, 1480px);
    min-height: inherit;
    margin: 0 auto;
    padding: clamp(64px, 8vw, 126px) clamp(22px, 8vw, 120px);
    display: grid;
    align-items: center;
}

.pcv3-hero__content {
    width: min(100%, 620px);
    display: grid;
    justify-items: start;
    gap: clamp(16px, 2.1vw, 30px);
}

.pcv3-hero__title {
    max-width: 820px;
    margin: 0;
    color: var(--pcv3-hero-red-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(56px, 5.5vw, 104px) !important;
    font-weight: 800;
    line-height: 0.94 !important;
    letter-spacing: 0 !important;
    text-align: left;
}

.pcv3-hero__title span {
    display: block;
    white-space: nowrap;
}

.pcv3-hero__divider {
    width: min(100%, 500px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    color: var(--pcv3-hero-gold);
}

.pcv3-hero__divider span:not(.pcv3-hero__icon) {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(191, 132, 45, 0.7), transparent);
}

.pcv3-hero__divider .pcv3-hero__icon {
    color: var(--pcv3-hero-gold);
}

.pcv3-hero__text {
    max-width: 590px;
    margin: 0;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 250, 239, 0.36);
    box-shadow: 0 16px 38px rgba(58, 25, 11, 0.08);
    color: #342927;
    font-size: clamp(18px, 1.45vw, 25px) !important;
    line-height: 1.58 !important;
    text-align: left;
}

.pcv3-hero__actions {
    width: min(100%, 485px);
    display: grid;
    gap: 14px;
}

.pcv3-hero__button {
    min-height: 72px;
    display: inline-grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 18px;
    padding: 17px 26px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6f0f15 0%, #8d1019 100%);
    color: #fff !important;
    box-shadow: 0 22px 44px rgba(83, 10, 15, 0.24);
    font-size: clamp(17px, 1.2vw, 22px) !important;
    font-weight: 800;
    line-height: 1.2 !important;
    text-decoration: none !important;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.pcv3-hero__button:hover,
.pcv3-hero__button:focus-visible {
    color: #fff !important;
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 26px 52px rgba(83, 10, 15, 0.3);
}

.pcv3-hero__icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.pcv3-hero__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pcv3-hero__button .pcv3-hero__icon {
    width: 34px;
    height: 34px;
    color: #fff;
}

.pcv3-hero__radio {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
    padding: 9px 16px;
    border: 1px solid rgba(191, 132, 45, 0.28);
    border-radius: 999px;
    background: rgba(255, 250, 239, 0.42);
    box-shadow: 0 14px 30px rgba(58, 25, 11, 0.07);
    color: #a66b1d !important;
    font-size: clamp(17px, 1.15vw, 22px) !important;
    font-weight: 800;
    line-height: 1.2 !important;
    text-decoration: none !important;
    border-bottom: 2px solid rgba(166, 107, 29, 0.42);
    transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pcv3-hero__radio:hover,
.pcv3-hero__radio:focus-visible {
    color: var(--pcv3-hero-red) !important;
    border-color: var(--pcv3-hero-red);
    transform: translateX(2px);
}

.pcv3-hero__radio .pcv3-hero__icon {
    width: 30px;
    height: 30px;
}

.pcv3-hero__radio span:not(.pcv3-hero__icon):not(.pcv3-hero__radio-arrow) {
    min-width: 0;
}

.pcv3-hero__radio-arrow {
    font-size: 1.2em;
    line-height: 1;
}

@media (max-width: 921px) {
    .pcv3-hero {
        min-height: clamp(620px, 88vh, 760px);
    }

    .pcv3-hero__image {
        object-position: center 63%;
        filter: saturate(1.1) contrast(1.1) brightness(0.98);
    }

    .pcv3-hero__overlay {
        background:
            linear-gradient(180deg, rgba(255, 250, 239, 0.00) 0%, rgba(255, 250, 239, 0.16) 32%, rgba(255, 250, 239, 0.66) 68%, rgba(255, 250, 239, 0.78) 100%),
            linear-gradient(90deg, rgba(255, 250, 239, 0.34), rgba(255, 250, 239, 0.04) 76%);
    }

    .pcv3-hero__inner {
        padding: 230px 22px 36px;
        align-items: end;
    }

    .pcv3-hero__content {
        width: min(100%, 420px);
        justify-items: center;
        gap: 16px;
    }

    .pcv3-hero__title,
    .pcv3-hero__text {
        text-align: center;
    }

    .pcv3-hero__title {
        font-size: clamp(38px, 10vw, 54px) !important;
        line-height: 0.96 !important;
    }

    .pcv3-hero__title span {
        white-space: normal;
    }

    .pcv3-hero__text {
        font-size: 17px !important;
        line-height: 1.5 !important;
        max-width: 440px;
        padding: 10px 14px;
        border-radius: 16px;
        background: rgba(255, 250, 239, 0.5);
        box-shadow: 0 14px 34px rgba(58, 25, 11, 0.08);
        color: #241817;
        text-shadow: 0 1px 8px rgba(255, 250, 239, 0.9);
    }

    .pcv3-hero__actions {
        width: 100%;
    }

    .pcv3-hero__button {
        width: 100%;
        min-height: 62px;
        grid-template-columns: 32px 1fr;
        justify-content: start;
        padding: 15px 22px;
        font-size: 18px !important;
    }

    .pcv3-hero__radio {
        justify-content: center;
        width: min(100%, 440px);
        box-sizing: border-box;
        padding: 10px 16px;
        border-radius: 999px;
        border: 1px solid rgba(191, 132, 45, 0.36);
        background: rgba(255, 250, 239, 0.62);
        box-shadow: 0 14px 30px rgba(58, 25, 11, 0.09);
        color: #7f4f12 !important;
        border-bottom-color: rgba(191, 132, 45, 0.36);
        font-size: 17px !important;
    }
}

@media (max-width: 520px) {
    .pcv3-hero {
        min-height: 820px;
    }

    .pcv3-hero__image {
        object-position: 50% 52%;
    }

    .pcv3-hero__inner {
        padding-top: 315px;
    }

    .pcv3-hero__divider {
        gap: 12px;
    }
}
