.alt-rows-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.alt-rows-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: stretch;
}

.alt-rows-reverse {
    flex-direction: row-reverse;
}

.alt-rows-text-col,
.alt-rows-img-col {
    flex: 1 1 50%;
    min-width: 300px;
    box-sizing: border-box;
}

.alt-rows-text-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    background-color: #f9f6f0;
}

.alt-rows-text-inner {
    max-width: 440px;
    width: 100%;
}

.alt-rows-subtitle {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8e8e8e;
    margin-bottom: 12px;
    font-family: inherit;
}

.alt-rows-title {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-weight: 400;
    color: #0c223f;
    font-family: "Playfair Display", serif;
}

.alt-rows-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 30px 0;
}

.alt-rows-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0c223f;
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}

.alt-rows-btn:hover {
    opacity: 0.9;
    letter-spacing: 2.5px;
}

.alt-rows-img-col {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.alt-rows-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.alt-rows-row:hover .alt-rows-img {
    transform: scale(1.03);
}

@media screen and (max-width: 991px) {
    .alt-rows-text-col {
        padding: 50px 40px;
    }
    .alt-rows-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 767px) {
    .alt-rows-row,
    .alt-rows-reverse {
        flex-direction: column;
    }
    .alt-rows-text-col,
    .alt-rows-img-col {
        flex: 1 1 100%;
    }
    .alt-rows-img-col {
        min-height: 300px;
    }
    .alt-rows-text-col {
        padding: 40px 20px;
    }
}
