/* Inclusive Space Section */
.inclusive-space-section {
    width: 100%;
    padding: 0 120px;
    margin: 0;
}

.inclusive-space-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 47px;
    align-items: stretch;
    justify-content: flex-end;
}

/* Content Column */
.inclusive-space-content {
    flex: 1 0 400px;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Title */
.inclusive-space-title {
    font-family: 'IvyOra Display', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    color: #ed6a59;
    margin: 0;
}

.inclusive-space-title strong {
    font-family: 'IvyOra Display', serif;
    font-weight: 700;
    font-style: normal;
}

.inclusive-space-title em {
    font-family: 'IvyOra Display', serif;
    font-weight: 500;
    font-style: italic;
}

/* Text Content */
.inclusive-space-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #403936;
}

.inclusive-space-text p {
    margin: 0 0 16px 0;
}

.inclusive-space-text p:last-child {
    margin-bottom: 0;
}

.inclusive-space-text ul {
    margin: 0 0 16px 0;
    padding-left: 24px;
    list-style-type: disc;
}

.inclusive-space-text ul li {
    margin: 0 0 4px 0;
}

.inclusive-space-text ul li:last-child {
    margin-bottom: 0;
}

/* CTA Button */
.inclusive-space-cta {
    align-self: flex-start;
}

/* Image Column */
.inclusive-space-image {
    flex: 1 0 400px;
    min-width: 400px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}

.inclusive-space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Styles */

/* Below 1400px */
@media (max-width: 1399px) {
    .inclusive-space-container {
        gap: 40px;
    }

    .inclusive-space-content {
        flex: 1 0 350px;
        min-width: 350px;
    }

    .inclusive-space-image {
        flex: 1 0 350px;
        min-width: 350px;
    }
}

/* Below 1200px - Mobile-like structure */
@media (max-width: 1199px) {
    .inclusive-space-section {
        padding: 0 60px;
    }

    .inclusive-space-container {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }

    .inclusive-space-content {
        flex: 1 1 auto;
        min-width: auto;
        display: contents;
    }

    .inclusive-space-title {
        font-size: 28px;
        order: 1;
    }

    .inclusive-space-image {
        flex: 1 1 auto;
        min-width: auto;
        height: auto;
        aspect-ratio: 1 / 1;
        order: 2;
    }

    .inclusive-space-text {
        order: 3;
    }

    .inclusive-space-cta {
        order: 4;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .inclusive-space-section {
        padding: 0 40px;
    }

    .inclusive-space-container {
        gap: 32px;
    }

    .inclusive-space-title {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .inclusive-space-image {
        height: 213px;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 767px) {
    .inclusive-space-section {
        padding: 0 16px;
    }

    .inclusive-space-container {
        flex-direction: column;
        gap: 40px;
    }

    .inclusive-space-content {
        display: contents;
    }

    .inclusive-space-title {
        font-size: 24px;
        order: 1;
    }

    .inclusive-space-image {
        order: 2;
    }

    .inclusive-space-text {
        order: 3;
    }

    .inclusive-space-cta {
        order: 4;
        width: 100%;
        max-width: 213px;
        margin: 0 auto;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .inclusive-space-section {
        padding: 0 16px;
    }

    .inclusive-space-text {
        font-size: 15px;
    }
}
