/* UrbanNutMix - About Section Component CSS */

.unm-about-section {
    width: 100%;
    padding: 70px clamp(16px, 4vw, 40px);
    background-color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}

.unm-about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Image Column */
.unm-about-img-col {
    flex: 0 0 35%; /* Left column smaller, right column wider */
    display: flex;
    justify-content: center;
    align-items: center;
}

.unm-about-gif {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Right Content Column */
.unm-about-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.unm-about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.015em;
    line-height: 1.25;
    position: relative;
    padding-bottom: 8px;
}

.unm-about-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569; /* Slate-600 */
    line-height: 1.75;
    margin: 0;
    letter-spacing: 0.01em;
}

/* ===================================
   RESPONSIVE OVERRIDES
   =================================== */

@media (max-width: 900px) {
    .unm-about-inner {
        gap: 36px;
    }
    .unm-about-title {
        font-size: 1.8rem;
    }
    .unm-about-desc {
        font-size: 0.88rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .unm-about-section {
        padding: 48px 24px;
    }
    .unm-about-inner {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .unm-about-img-col {
        flex: 0 0 100%;
        width: 100%;
    }
    .unm-about-gif {
        max-width: 200px; /* Make it more compact on mobile screens */
    }
    .unm-about-content-col {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .unm-about-section {
        padding: 40px 16px;
    }
    .unm-about-title {
        font-size: 1.55rem;
    }
    .unm-about-gif {
        max-width: 160px;
    }
}
