/* ══════════════════════════════════════════
   ABOUT PAGE STYLES — about.css (SS INSPIRED + SIMPLE)
   ══════════════════════════════════════════ */

.about-page-wrapper {
    background-color: #ffffff;
    padding: 2vw 0 0;
}

.about-section {
    padding: 0.5vw 0;
    /* margin-bottom: 2vw; */
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.6vw;
    color: #000000;
    margin-bottom: 0.8vw;
    font-weight: 700;
}

.about-text-content p {
    font-size: 1.1vw;
    line-height: 1.8;
    color: #000000;
    text-align: left;
}

.highlight-text {
    font-weight: 700;
    font-style: italic;
    color: #000000;
    margin-top: 1.5vw;
    padding: 1vw 0;
}

/* Strategy Screenshot-inspired Layout */
.strategy-ss-section {
    padding: 2vw 0;
    background-color: #f9f9f9;
    margin: 1.5vw 0;
}

.strategy-ss-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    max-width: 90%;
    margin: 0 auto;
}

.strategy-ss-left {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.strategy-ss-card {
    background: #ffffff;
    padding: 3vw;
    border: 1px solid #e0e0e0;
    border-radius: 0.5vw;
    height: 100%;
}

.mission-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.strategy-ss-title {
    font-family: var(--font-heading);
    font-size: 1.8vw;
    color: #2d4263; /* Police Blue from SS */
    margin-bottom: 1.5vw;
    font-weight: 600;
}

.strategy-ss-card p {
    font-size: 1vw;
    line-height: 1.7;
    color: #555;
}

.mission-list-ss {
    list-style: disc;
    padding-left: 1.5vw;
    margin-top: 1.5vw;
}

.mission-list-ss li {
    font-size: 0.95vw;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1vw;
}

.mission-list-ss li strong {
    color: #2d4263;
}

/* Impact Section Simple */
.impact-item-simple {
    margin-bottom: 2.5vw;
}

.impact-item-simple h3 {
    font-size: 1.3vw;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5vw;
}

.impact-item-simple p {
    font-size: 1.1vw;
    line-height: 1.8;
    color: #000000;
}

/* Mobile Adjustments */
@media (max-width: 960px) {
    .about-page-wrapper {
        padding: 8vw 0 12vw;
    }
    .about-section {
        padding: 4vw 0;
        margin-bottom: 6vw;
    }
    .section-title {
        font-size: 7vw;
        margin-bottom: 4vw;
    }
    .about-text-content p, .impact-item-simple p {
        font-size: 4.2vw;
        margin-bottom: 6vw;
    }
    .strategy-ss-grid {
        grid-template-columns: 1fr;
        gap: 8vw;
    }
    .strategy-ss-title {
        font-size: 6vw;
    }
    .strategy-ss-card p {
        font-size: 4vw;
    }
    .mission-list-ss li {
        font-size: 3.8vw;
    }
    .impact-item-simple h3 {
        font-size: 5.5vw;
    }
}

/* ══════════════════════════════════════════
   HOMEPAGE ABOUT SECTION STYLES
   (Preserved for Homepage consistency)
   ══════════════════════════════════════════ */

.vtet-about-section {
    padding: 3vw 0;
    background-color: #ffffff;
}

.vtet-about-content {
    max-width: 100%;
    margin-left: 0;
}

.vtet-about-label {
    display: inline-block;
    color: var(--theme-accent);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.83vw;
    letter-spacing: 0.26vw;
    margin-bottom: 1.04vw;
}

.vtet-about-title {
    font-family: var(--font-heading);
    font-size: 2.8vw;
    color: var(--theme-primary);
    margin-bottom: 1.56vw;
    line-height: 1.2;
    font-weight: 800;
}

.vtet-about-text {
    font-size: 1.15vw;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 2.6vw;
    text-align: left; /* Changed from justify to left as per previous requests */
}

.vtet-read-more-btn {
    background-color: var(--theme-primary);
    color: #ffffff;
    border: none;
    padding: 0 0.8vw 0 1.2vw; /* Reduced from 1.2vw/1.8vw */
    border-radius: 0.4vw;
    font-size: 0.95vw; /* Slightly smaller font for better balance */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8vw; /* Slightly smaller gap */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 3.2vw; /* Slightly smaller height */
    width: fit-content;
}

.vtet-read-more-btn .icon {
    background-color: #ffffff;
    color: var(--theme-primary);
    width: 2vw;
    height: 2vw;
    border-radius: 0.3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.vtet-read-more-btn .icon svg {
    width: 1.2vw;
    height: 1.2vw;
}

.vtet-read-more-btn:hover {
    background-color: var(--theme-accent);
    color: #000000;
    transform: translateX(0.5vw);
}

.vtet-read-more-btn:hover .icon {
    background-color: #000000;
    color: var(--theme-accent);
}

@media (max-width: 960px) {
    .vtet-about-content {
        max-width: 100%;
    }
    .vtet-about-label {
        font-size: 3.2vw;
        letter-spacing: 0.8vw;
    }
    .vtet-about-title {
        font-size: 8vw;
    }
    .vtet-about-text {
        font-size: 4.2vw;
        text-align: left;
    }
    .vtet-read-more-btn {
        height: 13.33vw;
        font-size: 4vw;
        padding: 0 5vw;
        border-radius: 2vw;
    }
    .vtet-read-more-btn .icon {
        width: 8vw;
        height: 8vw;
        border-radius: 1.5vw;
    }
    .vtet-read-more-btn .icon svg {
        width: 5vw;
        height: 5vw;
    }
}
