/* About Section Widget Styles - 3 Column Narrative & Gallery Layout */

.sp-about-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
    color: #111827;
}

.sp-about-section .sp-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px !important;
}

/* Story Blocks Layout */
.sp-about-story-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: flex-start;
}

.sp-about-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sp-about-block__graphic {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: none !important;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.sp-about-block:hover .sp-about-block__graphic {
    transform: translateY(-8px);
}

.sp-about-block__graphic img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
}

.sp-about-block__content {
    display: flex;
    flex-direction: column;
}

/* Typography */
.sp-about-col-title {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    font-family: var(--primaryFont);
    position: relative;
    padding-bottom: 25px;
    line-height: 1.2;
}

.sp-about-col-title::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #059669; /* Matched Teal */
    border-radius: 2px;
}

.sp-about-col-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
    font-weight: 400;
}

.sp-about-col-text p {
    margin-bottom: 20px;
}

.sp-about-col-text p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .sp-about-section {
        padding: 80px 0;
    }

    .sp-about-story-blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .sp-about-col-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .sp-about-section {
        padding: 60px 0;
    }

    .sp-container {
        padding: 0 24px !important;
    }

    .sp-about-story-blocks {
        grid-template-columns: 1fr;
        gap: 60px; /* Generous separation between blocks */
    }

    .sp-about-col-title {
        font-size: 28px;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    .sp-about-col-title::after {
        bottom: 8px;
        width: 50px;
    }

    .sp-about-col-text {
        font-size: 0.95rem;
    }

    .sp-about-block__graphic {
        border-radius: 30px;
    }
}