.homza-about-section {
    display: grid;
    grid-template-columns: minmax(0, var(--homza-about-text-width, 55%)) minmax(0, 1fr);
    gap: var(--homza-about-gap, 48px);
    align-items: var(--homza-about-align, center);
    width: min(100%, var(--homza-about-section-max-width, 900px));
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.homza-about-copy {
    min-width: 0;
}

.homza-about-copy > :first-child {
    margin-top: 0;
}

.homza-about-copy > :last-child {
    margin-bottom: 0;
}

.homza-about-rotator {
    width: 100%;
    max-width: var(--homza-about-max-width, 420px);
    box-sizing: border-box;
    min-width: 0;
}

.homza-about-rotator.homza-align-left {
    margin-left: 0;
    margin-right: auto;
}

.homza-about-rotator.homza-align-center {
    margin-left: auto;
    margin-right: auto;
}

.homza-about-rotator.homza-align-right {
    margin-left: auto;
    margin-right: 0;
}

.homza-about-stage {
    position: relative;
    width: 100%;
    aspect-ratio: var(--homza-about-ratio, 4 / 5);
    overflow: hidden;
    border-radius: var(--homza-about-radius, 24px);
    background: #f2f2f2;
}

.homza-about-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity var(--homza-about-transition, 900ms) ease;
    pointer-events: none;
}

.homza-about-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.homza-about-image {
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    object-fit: var(--homza-about-fit, cover);
    object-position: var(--homza-about-position, center center);
}

.homza-about-empty {
    padding: 16px;
    border: 1px dashed #bbb;
    border-radius: 8px;
    background: #fafafa;
}

@media (max-width: 782px) {
    .homza-about-section {
        grid-template-columns: 1fr;
        gap: min(var(--homza-about-gap, 48px), 32px);
    }

    .homza-about-rotator {
        max-width: min(100%, var(--homza-about-max-width, 420px));
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 480px) {
    .homza-about-rotator {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .homza-about-slide {
        transition: none;
    }
}


/* About copy typography: tight normal lines, deliberate space only between paragraphs. */
.homza-about-copy p {
    margin-top: 0;
    margin-bottom: 0.75em;
    line-height: 1.5;
}

.homza-about-copy p:last-child {
    margin-bottom: 0;
}

.homza-about-copy br {
    line-height: inherit;
}

/* v1.4.1 About Me image background */
.homza-about-rotator,
.homza-about-media,
.homza-about-slide {
    background: var(--homza-about-image-bg, transparent) !important;
}
