/* Redesigned Love Story Section */
.love-story-section.redesigned {
    background-image: none !important;
    background-color: #F9F9F9;
    padding: 80px 20px;
    color: #333;
    text-align: center;
}

.love-story-section.redesigned::before {
    display: none;
}

.love-story-image-main-wrapper {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 30px;
}

.love-story-image-main {
    width: 100%;
    height: auto;
    max-height: 450px;
    display: block;
    object-fit: cover;
}

.love-story-title.redesigned {
    font-family: var(--font-primary);
    font-size: 32px;
    color: #333;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 400;
}

.love-story-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.love-story-grid-item {
    width: calc(50% - 10px);
    max-width: 250px;
}

.love-story-grid-img {
    width: 100%;
    height: 300px;
    /* Fixed height for uniformity */
    object-fit: cover;
    display: block;
}

.love-story-text-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
    /* Or left, depending on preference. Image looks like generic text block. Justify is safer for blocks. */
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.8;
    color: #222;
    padding: 0 10px;
}

.love-story-text-content p {
    margin-bottom: 20px;
}

/* Override story-paragraph styles inside redesigned section */
.love-story-section.redesigned .story-paragraph {
    color: #333;
    text-align: justify;
}

.love-story-section.redesigned .love-story-content .story-paragraph {
    color: #333;
    text-align: justify;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .love-story-grid-img {
        height: 250px;
        /* Shorter height on mobile */
    }

    .love-story-image-main {
        max-height: 300px;
    }
}