/* 
   About Us Section Styles (Mōksana Ecosystem)
*/

.about-section {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: transparent;
    overflow: hidden;
    /* Subtle grid background if desired */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
}

.about-title {
    font-weight: 600;
    font-size: 2.5rem;
    color: #000000;
    /* Adjusted to fit the general theme */
    line-height: 1.2;
}

.about-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
}

.about-body p {
    margin-bottom: 1.5rem;
}

.about-body p:last-child {
    margin-bottom: 0;
}

.about-body b,
.about-body strong {
    font-weight: 600;
    color: #000;
}

.about-media-container {
    position: relative;
}

.about-image-wrapper,
.about-video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.about-image,
.about-video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover,
.about-video:hover {
    transform: scale(1.02);
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
        text-align: center;
    }

    .about-body {
        text-align: justify;
        padding: 1.5rem;
    }

    .about-image-container {
        margin-top: 2.5rem;
    }
}