/* OzoShip section heading shortcode styles */

.ozoship-section-heading,
.ozoship-section-heading * {
    font-family: var(--ozoship-font-family);
}

.ozoship-section-heading {
    width: 100%;
    background: var(--ozoship-section-heading-background);
    color: #fff;
}

.ozoship-section-heading__inner {
    width: min(100%, var(--ozoship-container-width));
    margin-inline: auto;
    padding: var(--ozoship-section-heading-padding-top) var(--ozoship-section-heading-padding-right) var(--ozoship-section-heading-padding-bottom) var(--ozoship-section-heading-padding-left);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ozoship-section-heading-gap);
    text-align: center;
}

.ozoship-section-heading__title {
    color: var(--ozoship-section-heading-title-color);
    font-size: var(--ozoship-section-heading-title-size, 24px);
    font-weight: var(--ozoship-section-heading-title-weight, 700);
    line-height: 1.15;
    text-transform: var(--ozoship-section-heading-title-transform, uppercase);
    letter-spacing: 0.01em;
}

.ozoship-section-heading__subtitle-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.ozoship-section-heading__subtitle {
    margin: 0;
    color: var(--ozoship-section-heading-subtitle-color);
    font-size: var(--ozoship-section-heading-subtitle-size, 32px);
    font-weight: var(--ozoship-section-heading-subtitle-weight, 800);
    line-height: 1.05;
    text-transform: var(--ozoship-section-heading-subtitle-transform, uppercase);
    letter-spacing: -0.02em;
}

.ozoship-section-heading__underline {
    display: block;
    width: var(--ozoship-section-heading-underline-width, 100%);
    height: 3px;
    margin-top: 2px;
    background: var(--ozoship-section-heading-underline-color);
}

.ozoship-section-heading__description {
    color: var(--ozoship-section-heading-description-color);
    font-size: var(--ozoship-section-heading-description-size, 14px);
    font-weight: var(--ozoship-section-heading-description-weight, 700);
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

@media only screen and (max-width: 48em) {
    .ozoship-section-heading__inner {
        gap: 8px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .ozoship-section-heading__title {
        font-size: 20px;
    }

    .ozoship-section-heading__subtitle {
        font-size: 24px;
    }

    .ozoship-section-heading__description {
        font-size: 13px;
    }
}
