/* SVG Icon Support & Featured Testimonial — Patch for premium icon redesign */

/* SVG icons inherit color from variant classes */
.feature-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-icon--red svg {
    stroke: var(--red);
}

.feature-icon--orange svg {
    stroke: var(--orange);
}

.feature-icon--green svg {
    stroke: var(--green);
}

/* Featured testimonial card — spans full width for single review */
.testimonial-card--featured {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.testimonial-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--orange));
}

.testimonial-card--featured blockquote {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Founder avatar with real photo */
.founder-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* About page: reduce hero height (no app preview, just text) */
.hero--compact {
    min-height: auto !important;
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 3rem;
}

/* About page photo gallery */
.story-photos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.story-photos img {
    max-width: 320px;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid var(--border);
}
