.ps-dc557d20-container {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: clamp(520px, 65vh, 760px);
    align-items: stretch;
}

.ps-dc557d20-image-col,
.ps-dc557d20-content-col {
    flex: 1 1 50%;
    min-width: 320px;
    box-sizing: border-box;
}

.ps-dc557d20-image-col {
    position: relative;
    overflow: hidden;
    min-height: clamp(520px, 65vh, 760px);
    align-self: stretch;
}

.ps-dc557d20-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: absolute;
    inset: 0;
}

.ps-dc557d20-content-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
    min-height: clamp(520px, 65vh, 760px);
}

.ps-dc557d20-inner-content {
    max-width: 550px;
    width: 100%;
}

.ps-dc557d20-title {
    font-family: 'Playfair Display', serif, Georgia;
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    font-weight: 700;
}

.ps-dc557d20-text {
    font-family: inherit;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.ps-dc557d20-text p {
    margin: 0 0 16px 0;
}

.ps-dc557d20-text p:last-child {
    margin-bottom: 0;
}

.ps-dc557d20-btn-wrapper {
    margin-top: 35px;
}

.ps-dc557d20-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ps-dc557d20-btn:hover {
    opacity: 0.9;
}

/* Tablet */
@media (max-width: 1024px) {
    .ps-dc557d20-container {
        min-height: clamp(500px, 60vh, 700px);
    }

    .ps-dc557d20-image-col,
    .ps-dc557d20-content-col {
        min-height: clamp(500px, 60vh, 700px);
    }

    .ps-dc557d20-title {
        font-size: 36px;
    }

    .ps-dc557d20-content-col {
        padding: 60px 6%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ps-dc557d20-container {
        width: 100%;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
        min-height: unset;
        flex-direction: column;
    }

    .ps-dc557d20-image-col {
        flex: 0 0 auto;
        width: 100%;
        min-width: 100%;
        height: 360px;
        min-height: 360px;
        position: relative;
        align-self: auto;
    }

    .ps-dc557d20-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .ps-dc557d20-content-col {
        flex: 0 0 auto;
        width: 100%;
        min-width: 100%;
        min-height: unset;
        padding: 40px 24px;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .ps-dc557d20-inner-content {
        max-width: 100%;
    }

    .ps-dc557d20-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .ps-dc557d20-text {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .ps-dc557d20-btn-wrapper {
        margin-top: 24px;
    }

    .ps-dc557d20-btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }
}