/* ===== Quantum Design Connection — custom overrides ===== */

.pull-quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #1a1a1a;
    border: none;
    border-left: 4px solid #2d88a3; /* swap for your accent color */
    margin: 2.5rem 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
}

.core-skills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.core-skills dt {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
    color: #2d88a3; /* swap for your accent color */
    margin-bottom: 0.25rem;
}

.core-skills dd {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

/* Two-column grid on wider screens */
@media (min-width: 768px) {
    .core-skills {
        grid-template-columns: 1fr 1fr;
        column-gap: 3rem;
    }
}
.founder-photo {
    width: 380px;
    max-width: 100%;
    height: auto;
}
.bio-content p {
    text-align: left;
}
.bio-content p.photo-wrap {
    text-align: center;
}
/* ===== Hero (replaces Revolution Slider) ===== */
.hero-split {
    display: flex;
    flex-direction: column;
    background-color: #1a1e21;
    overflow: hidden;
}

.hero-photo {
    order: 1;
    align-self: center;
    height: 380px;
}

.hero-photo img {
    height: 100%;
    width: auto;
    display: block;
    margin: 0 auto;
}

.hero-text {
    order: 2;
    padding: 50px 30px;
}

.hero-line-bold {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.3em 0;
}

.hero-line-accent {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #87919a;
    margin: 0 0 0.5em 0;
}

.hero-line-light {
    font-size: 1.9rem;
    font-weight: 300;
    color: #eef0f2;
    margin: 0 0 1.2em 0;
}

@media (min-width: 768px) {
              .hero-split {
        flex-direction: row;
        height: 820px;
        justify-content: flex-end;
        gap: 60px;
    }
    .hero-photo {
        order: 2;
        height: 700px;
        align-self: flex-start;
        flex: 0 0 auto;
    }
            .hero-text {
        order: 1;
        flex: 0 1 700px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 80px;
    }
    .hero-line-bold { font-size: 2.75rem; }
    .hero-line-light { font-size: 2.5rem; }
    .hero-line-accent { font-size: 1.2rem; }
}