.souls-section {
    /* Translates: bg-gradient-to-br from-sage-50 via-white to-yellow-50 */
    background: linear-gradient(135deg, #f4f7f5 0%, #ffffff 50%, #fefce8 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden; /* prevents blob from causing horizontal scroll */
}

/* --- Image Card & Decorative Blob --- */
.image-wrapper {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

.image-card {
    aspect-ratio: 4 / 5;
    border-radius: 1.5rem; /* rounded-3xl */
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    background-color: #f8f9fa;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decorative-blob {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 16rem;
    height: 16rem;
    /* Translates: bg-gradient-to-br from-yellow-200 to-sage-200 */
    background: linear-gradient(135deg, #fef08a, #d2e3d8);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(40px); /* blur-3xl */
    z-index: -1;
}

/* --- Typography --- */

.sub-heading1 {
    color: #5c8272;
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-01);
}

/* --- Glassmorphism Box --- */
.glass-box {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid #d1dcd7;
    border-radius: 1rem; /* rounded-2xl */
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.glass-box p {
    color: #3d574d;
    font-size: 1.25rem; /* text-xl */
    margin: 0;
    line-height: 1.75;
    font-family: var(--font-01);
}

/* --- Phases Grid --- */
.kicker1 {
    color: #5c8272;
    font-size: 0.875rem; /* text-sm */
    text-transform: uppercase;
    letter-spacing: 0.1em; /* tracking-widest */
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: var(--font-01);
}

.phase-card {
    background-color: #ffffff;
    border-radius: 0.75rem; /* rounded-xl */
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
    border: 1px solid #e8edeb;
    height: 100%;
}

.phase-card-text {
    color: #2d3f37;
    font-weight: 600;
    font-size: 1.125rem; /* text-lg */
    margin: 0;
    font-family: var(--font-01);
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
    .souls-section {
        padding-top: 8rem; /* md:py-32 */
        padding-bottom: 8rem;
    }
}