.content-creation {
    max-width: 1300px;
    margin: auto;
    padding: 0 2rem;
}

/* Hero Section */
.content-creation-hero {
    padding: 10rem 0 6rem;
    background-position: center;
    background-size: cover;
    position: relative;
}

.content-creation-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.4));
}

.content-creation-hero h1,
.content-creation-hero p {
    position: relative;
    color: #fff;
    text-align: center;
}

.content-creation-hero h1 {
    font-weight: 600;
    letter-spacing: -1.5px;
}

/* Grid Layout */
.content-creation-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    margin: 4rem 0;
}

.content-creation-col {
    flex: 1;
    min-width: 300px;
}

/* Images */
.content-creation-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

.content-creation-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* Responsive */
@media(min-width:1024px) {
    .content-creation-hero h1 {
        font-size: 58px;
    }
}

@media(max-width:1023px) {
    .content-creation-hero h1 {
        font-size: 42px;
    }
}

@media(max-width:640px) {
    .content-creation-hero h1 {
        font-size: 32px;
    }
}

@media(max-width:992px) {
    .content-creation-row {
        flex-direction: column;
        gap: 3rem;
    }
    .content-creation-img img {
        height: 400px;
    }
}