/* Vision, mission, and values page */

/* CSS for values under About Us and below vision & mission */
.values-text {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 32px;
    text-align: left;
    background: var(--color-surface);
    border-radius: 28px;
    box-shadow: var(--shadow-panel);
}

.values-text .title {
    margin-bottom: 28px;
}

.values-text .title h1 {
    margin: 0;
    color: var(--color-heading);
    font-size: var(--text-title);
}

.values-text .title h4 {
    margin: 18px 0 0;
    padding: 14px 18px;
    color: var(--color-text);
    background: transparent;
    border-left: 4px solid var(--color-accent);
    border-radius: 0 12px 12px 0;
    box-shadow: none;
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    line-height: var(--leading-relaxed);
    max-width: 740px;
}

/* List styling */
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    width: 100%;
}

.values-list li {
    position: relative;
    margin-bottom: 0;
    padding: 18px 18px 18px 54px;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    color: var(--color-label);
    line-height: var(--leading-relaxed);
}

.values-list li strong {
    display: block;
    margin-bottom: 8px;
    font-size: var(--text-body);
    color: var(--color-heading);
}

.values-list li::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: var(--shadow-bullet);
}

.values-list li::after {
    content: "";
    position: absolute;
    top: 29px;
    left: 24px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-white);
}

@media (max-width: 1000px) {
    .values-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .values-list {
        grid-template-columns: 1fr;
    }
}
