/*
|--------------------------------------------------------------------------
| Purnia About / Current Program
|--------------------------------------------------------------------------
*/

.purnia-about-section {
    width: 100%;
    background: #ffffff;
    padding: 28px 0 36px;
}

.purnia-about-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.purnia-about-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.purnia-about-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    display: flex;
    z-index: 5;
}

.purnia-about-accent span:first-child {
    width: 50%;
    background: #f97316;
}

.purnia-about-accent span:last-child {
    width: 50%;
    background: #16a34a;
}


/* Main Grid */

.purnia-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 500px;
}


/* Map */

.purnia-map-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: #f8fafc;
}

.purnia-map-wrapper {
    width: 100%;
    max-width: 560px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.05);
}

.purnia-map-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 9px;
}


/* Content */

.purnia-content-column {
    display: flex;
    align-items: center;
    background: #ffffff;
}

.purnia-content-inner {
    width: 100%;
    padding: 42px 44px;
}

.purnia-section-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 6px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.purnia-section-title {
    margin: 12px 0 0;
    color: #0f172a;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
}

.purnia-title-line {
    display: flex;
    width: 100px;
    height: 4px;
    margin-top: 15px;
    overflow: hidden;
    border-radius: 20px;
}

.purnia-title-line span {
    width: 33.333%;
}

.purnia-title-line span:nth-child(1) {
    background: #f97316;
}

.purnia-title-line span:nth-child(2) {
    background: #e2e8f0;
}

.purnia-title-line span:nth-child(3) {
    background: #16a34a;
}

.purnia-content-inner p {
    margin: 17px 0 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.85;
}


/* Bottom Information */

.purnia-info-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: 13px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
}

.purnia-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 9px;
    background: #eff6ff;
    font-size: 18px;
}

.purnia-info-note strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
}

.purnia-info-note span {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 12px;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 900px) {

    .purnia-about-grid {
        grid-template-columns: 1fr;
    }

    .purnia-map-column {
        padding: 24px;
    }

    .purnia-map-wrapper {
        max-width: 650px;
    }

    .purnia-content-inner {
        padding: 30px 28px 34px;
    }

    .purnia-section-title {
        font-size: 30px;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 600px) {

    .purnia-about-section {
        padding: 22px 0 28px;
    }

    .purnia-about-container {
        padding: 0 12px;
    }

    .purnia-about-card {
        border-radius: 14px;
    }

    .purnia-map-column {
        padding: 14px;
    }

    .purnia-map-wrapper {
        padding: 7px;
        border-radius: 10px;
    }

    .purnia-content-inner {
        padding: 24px 18px 26px;
    }

    .purnia-section-badge {
        font-size: 10px;
    }

    .purnia-section-title {
        font-size: 27px;
    }

    .purnia-content-inner p {
        font-size: 14px;
        line-height: 1.8;
        margin-top: 14px;
    }

    .purnia-info-note {
        margin-top: 18px;
    }
}