/* ==========================================================================
   NC About Widget
   Scoped to .elementor-widget-nc_about
   ========================================================================== */

/* ---- Base ---- */
.elementor-widget-nc_about .nc-about {
    padding: 120px 60px;
    background: #0A0A0A;
}

/* ---- Grid ---- */
.elementor-widget-nc_about .nc-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* ---- Image ---- */
.elementor-widget-nc_about .nc-about__image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* ---- Content ---- */
.elementor-widget-nc_about .nc-about__content {
    display: flex;
    flex-direction: column;
}

/* ---- Section label ---- */
.elementor-widget-nc_about .nc-section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2563EB;
    margin-bottom: 16px;
}

/* ---- Heading ---- */
.elementor-widget-nc_about .nc-about__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 24px;
}

/* ---- Description ---- */
.elementor-widget-nc_about .nc-about__desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.elementor-widget-nc_about .nc-about__desc p {
    margin-bottom: 16px;
}

.elementor-widget-nc_about .nc-about__desc p:last-child {
    margin-bottom: 0;
}

/* ---- Button ---- */
.elementor-widget-nc_about .nc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    align-self: flex-start;
}

.elementor-widget-nc_about .nc-btn--primary {
    background-color: #2563EB;
    color: #FFFFFF;
    border: 2px solid #2563EB;
}

.elementor-widget-nc_about .nc-btn--primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

/* ---- Responsive: Tablet ---- */
@media (max-width: 1024px) {
    .elementor-widget-nc_about .nc-about {
        padding: 80px 40px;
    }

    .elementor-widget-nc_about .nc-about__grid {
        gap: 48px;
    }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 768px) {
    .elementor-widget-nc_about .nc-about {
        padding: 60px 24px;
    }

    .elementor-widget-nc_about .nc-about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .elementor-widget-nc_about .nc-about__image {
        order: -1;
    }

    .elementor-widget-nc_about .nc-about__content {
        text-align: left;
    }

    .elementor-widget-nc_about .nc-about__heading {
        font-size: clamp(28px, 6vw, 36px);
    }
}
