/* Founder page - dedicated /dmytro-nasyrov/
 * 2026 design system: white bg, blue #4B7DE1, thin #EEF0F4 borders, left-aligned text
 */

/* ------------------------------------------------------------------ */
/* Page container                                                       */
/* ------------------------------------------------------------------ */

.founder-page {
    background: #FFFFFF;
}

/* ------------------------------------------------------------------ */
/* Hero                                                                 */
/* ------------------------------------------------------------------ */

.founder-hero {
    padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 5vw, 64px);
}

.founder-hero__breadcrumb {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 32px;
    margin-top: 24px;
}

.founder-hero__breadcrumb a {
    color: #4B7DE1;
    text-decoration: none;
}

.founder-hero__breadcrumb a:hover {
    text-decoration: underline;
}

.founder-hero__inner {
    display: grid;
    grid-template-columns: clamp(220px, 28vw, 320px) 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

@media (max-width: 768px) {
    .founder-hero__inner {
        grid-template-columns: 1fr;
    }
}

.founder-hero__photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4B7DE1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    display: block;
}

.founder-hero__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4B7DE1;
    margin: 0 0 12px;
}

.founder-hero__title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0F172A;
    margin: 0 0 8px;
    line-height: 1.05;
}

.founder-hero__role {
    font-size: clamp(16px, 2vw, 20px);
    color: #475569;
    margin: 0 0 24px;
    font-weight: 500;
}

/* ------------------------------------------------------------------ */
/* Chips                                                                */
/* ------------------------------------------------------------------ */

.founder-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.founder-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(90deg, #EEF3FE 0%, #F5F7FE 100%);
    border: 1px solid #E0E9FB;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

/* ------------------------------------------------------------------ */
/* CTA buttons                                                          */
/* ------------------------------------------------------------------ */

.founder-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.founder-hero__btnPrimary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #4B7DE1 0%, #3A6BCE 100%);
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.founder-hero__btnPrimary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(75, 125, 225, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.founder-hero__btnGhost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    background: transparent;
    color: #4B7DE1;
    border: 1px solid #E0E9FB;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease;
}

.founder-hero__btnGhost:hover {
    background: #F5F7FE;
}

.founder-hero__socials {
    margin-top: 16px;
}

/* ------------------------------------------------------------------ */
/* Body sections common                                                 */
/* ------------------------------------------------------------------ */

.founder-bio,
.founder-credentials,
.founder-specialization,
.founder-timeline,
.founder-articles {
    padding: clamp(40px, 5vw, 64px) 0;
    border-top: 1px solid #EEF0F4;
}

.founder-page h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0F172A;
    margin: 0 0 24px;
    position: relative;
    padding-left: 16px;
}

.founder-page h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3em;
    bottom: 0.3em;
    width: 3px;
    background: linear-gradient(180deg, #4B7DE1 0%, #818CF8 100%);
    border-radius: 2px;
}

.founder-page p {
    font-size: 17px;
    line-height: 1.75;
    color: #475569;
    max-width: 75ch;
    margin: 0 0 16px;
}

.founder-page strong {
    color: #0F172A;
    font-weight: 600;
}

/* ------------------------------------------------------------------ */
/* Bio                                                                  */
/* ------------------------------------------------------------------ */

.founder-bio__lead {
    font-size: clamp(16px, 1.5vw, 18px);
}

.founder-quote {
    margin: 32px 0 0;
    padding: 24px 32px;
    background: linear-gradient(135deg, #F5F7FE 0%, #FFFFFF 100%);
    border-left: 4px solid #4B7DE1;
    border-radius: 8px;
    font-style: italic;
    color: #0F172A;
    font-size: clamp(18px, 2vw, 22px);
}

.founder-quote p {
    margin: 0;
    font-size: inherit;
    color: inherit;
    font-style: inherit;
}

/* ------------------------------------------------------------------ */
/* Credentials list                                                     */
/* ------------------------------------------------------------------ */

.founder-credentials__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.founder-credentials__list li {
    padding: 16px 20px;
    background: #F9FAFB;
    border: 1px solid #EEF0F4;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.founder-credentials__list a {
    color: #4B7DE1;
    text-decoration: none;
    border-bottom: 1px solid rgba(75, 125, 225, 0.3);
}

.founder-credentials__list a:hover {
    border-bottom-color: #4B7DE1;
}

/* ------------------------------------------------------------------ */
/* Specialization grid                                                  */
/* ------------------------------------------------------------------ */

.founder-specialization__grid {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.founder-specialization__grid li a {
    display: block;
    padding: 20px 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    border: 1px solid #EEF0F4;
    border-radius: 12px;
    color: #475569;
    text-decoration: none;
    line-height: 1.6;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.founder-specialization__grid li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* ------------------------------------------------------------------ */
/* Timeline                                                             */
/* ------------------------------------------------------------------ */

.founder-timeline__list {
    list-style: none;
    padding: 24px 0 0 32px;
    margin: 0;
    border-left: 2px solid #EEF0F4;
}

.founder-timeline__item {
    position: relative;
    padding-bottom: 32px;
}

.founder-timeline__item::before {
    content: '';
    position: absolute;
    left: -39px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #4B7DE1;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 2px #4B7DE1;
}

.founder-timeline__year {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4B7DE1;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.founder-timeline__body {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
}

.founder-timeline__body strong {
    display: block;
    font-size: 17px;
    color: #0F172A;
    margin-bottom: 6px;
}

.founder-timeline__body p {
    margin: 0;
    font-size: 16px;
}

/* ------------------------------------------------------------------ */
/* Articles section                                                     */
/* ------------------------------------------------------------------ */

.founder-articles__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: #4B7DE1;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(75, 125, 225, 0.3);
    padding-bottom: 1px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.founder-articles__link:hover {
    border-bottom-color: #4B7DE1;
    transform: translateX(2px);
}

/* ------------------------------------------------------------------ */
/* Last reviewed pill                                                   */
/* ------------------------------------------------------------------ */

.founder-last-reviewed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #F9FAFB;
    border: 1px solid #EEF0F4;
    border-radius: 999px;
    font-size: 12px;
    color: #64748B;
    margin: 24px 0 48px;
    max-width: none;
}
