/* SECTION WRAPPER */
.module-why-should-i-hire-v2 {
    padding-top: var(--py-section, 4rem);
    padding-bottom: var(--py-section, 4rem);
    background-color: var(--color-white, #fff);
    color: var(--color-body-text);
}

.module-why-should-i-hire-v2 .why-hire-container {
    max-width: var(--width-normal, 1376px);
    margin: 0 auto;
    padding: 0 var(--gutter-size, 20px);
}

.module-why-should-i-hire-v2 .why-hire-eyebrow {
    display: block;
    font-family: var(--font-family-body, 'Public Sans', sans-serif);
    font-size: var(--font-size-eyebrow, 0.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent-01, #b82329);
    text-align: center;
    margin-bottom: 0.5rem;
}

.module-why-should-i-hire-v2 h2.why-hire-heading {
    font-family: var(--font-family-heading, 'Playfair Display', serif);
    font-size: var(--font-size-h2, 2.25rem);
    line-height: 1.25;
    color: var(--color-primary, #161b35);
    text-align: center;
    margin: 0 0 1.5rem;
}

.module-why-should-i-hire-v2 .why-hire-description {
    max-width: 780px;
    margin: 0 auto 3rem;
    font-family: var(--font-family-body, 'Public Sans', sans-serif);
    font-size: var(--font-size-base, 1.125rem);
    line-height: 1.6;
    color: var(--color-body-text);
    text-align: center;
}

/* GRID WITH CROSS DIVIDER LINES */
.module-why-should-i-hire-v2 .why-hire-grid {
    position: relative;
}

.module-why-should-i-hire-v2 .why-hire-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
}

.module-why-should-i-hire-v2 .why-hire-block:first-child {
    padding-top: 0;
}

.module-why-should-i-hire-v2 .why-hire-block:last-child {
    padding-bottom: 0;
}

.module-why-should-i-hire-v2 .why-hire-block + .why-hire-block {
    border-top: 1px solid var(--color-gray-500, #e5e7eb);
}

.module-why-should-i-hire-v2 .why-hire-media,
.module-why-should-i-hire-v2 .why-hire-content {
    width: 100%;
}

.module-why-should-i-hire-v2 .why-hire-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.module-why-should-i-hire-v2 h3.why-hire-block-heading {
    font-family: var(--font-family-heading, 'Playfair Display', serif);
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--color-primary, #161b35);
    margin: 0 0 1rem;
}

.module-why-should-i-hire-v2 .why-hire-block-desc {
    font-family: var(--font-family-body, 'Public Sans', sans-serif);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-body-text);
    margin-bottom: 1.5rem;
}

.module-why-should-i-hire-v2 .why-hire-block-desc p {
    margin: 0 0 1rem;
}

.module-why-should-i-hire-v2 .why-hire-block-desc p:last-child {
    margin-bottom: 0;
}

.module-why-should-i-hire-v2 .why-hire-block-desc ul {
    list-style: disc;
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.module-why-should-i-hire-v2 .why-hire-block-desc ol {
    list-style: decimal;
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.module-why-should-i-hire-v2 .why-hire-block-desc li {
    display: list-item;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.module-why-should-i-hire-v2 .why-hire-block-desc li:last-child {
    margin-bottom: 0;
}

/* CTA BUTTON — same primary-btn pattern used across the other modules */
.module-why-should-i-hire-v2 .button.primary-btn {
    display: inline-block;
    background-color: var(--color-accent-01, #b82329);
    color: var(--color-white, #fff);
    font-family: var(--font-family-body, 'Public Sans', sans-serif);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.module-why-should-i-hire-v2 .button.primary-btn:hover {
    background-color: #9a1c22;
}

/* DESKTOP LAYOUT — side-by-side with a fixed center divider, content zigzags across it */
@media (min-width: 1025px) {
    .module-why-should-i-hire-v2 .why-hire-grid::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background-color: var(--color-gray-500, #e5e7eb);
    }

    .module-why-should-i-hire-v2 .why-hire-block {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .module-why-should-i-hire-v2 .why-hire-block.reverse {
        flex-direction: row-reverse;
    }

    .module-why-should-i-hire-v2 .why-hire-media,
    .module-why-should-i-hire-v2 .why-hire-content {
        flex: 1;
        min-width: 0;
    }

    .module-why-should-i-hire-v2 .why-hire-media img {
        aspect-ratio: 4 / 3;
    }
}
