/* MoscowQA Static Site â€” based on moscowqa-site (Next.js) design */

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --max-w: 1400px;
    --pink: #db2777;
    --pink-dark: #be185d;
    --pink-light: rgba(219, 39, 119, 0.1);
    --purple: #7c3aed;
    --green: #16a34a;
    --green-light: rgba(22, 163, 74, 0.1);
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --radius: 0.75rem;
    --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.07);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
}

body {
    margin: 0;
    padding: 0;
    background: #000;
    color: var(--gray-800);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--pink);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--pink-dark);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

img { max-width: 100%; height: auto; }

/* === Header (black bar) === */
.header {
    background: #000;
    color: #fff;
}

.header__inner {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: #fff;
}

.header__logo:hover {
    text-decoration: none;
    color: #fff;
}

.header__logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.header__logo-text {
    font-size: 1.875rem;
    font-weight: 700;
    padding: 0 1rem;
}

.header__nav {
    display: flex;
    gap: 0;
    align-items: center;
}

.header__nav a {
    color: #fff;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
}

.header__nav a:hover {
    color: var(--pink);
    text-decoration: none;
}

.header__nav a.active {
    background: var(--pink);
    color: #fff;
}

/* Burger */
.header__burger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    .header__burger {
        display: block;
    }
    .header__nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #000;
        z-index: 100;
    }
    .header__nav.open a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #222;
    }
    .header__inner {
        position: relative;
    }
}

/* === Main content area === */
.main {
    flex: 1;
    background: linear-gradient(to bottom, var(--gray-50), #fff);
}

/* === Container === */
.container {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.container--narrow {
    max-width: 42rem;
}

/* === Hero Section (index page) === */
.hero {
    background: linear-gradient(135deg, var(--pink) 0%, #ec4899 40%, var(--purple) 100%);
    color: #fff;
    padding: 5rem 1rem;
}

.hero__content {
    max-width: var(--max-w);
    margin: 0 auto;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .hero { padding: 3rem 1rem; }
    .hero__title { font-size: 2.25rem; }
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: #fff;
    color: var(--pink);
}

.btn--primary:hover {
    background: var(--gray-100);
    color: var(--pink-dark);
    text-decoration: none;
}

.btn--outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.btn--outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    text-decoration: none;
    color: #fff;
}

.btn--pink {
    background: var(--pink);
    color: #fff;
}

.btn--pink:hover {
    background: var(--pink-dark);
    color: #fff;
    text-decoration: none;
}

.btn--green {
    background: var(--green);
    color: #fff;
}

.btn--green:hover {
    background: #15803d;
    color: #fff;
    text-decoration: none;
}

/* === Info Panel === */
.panel {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.panel h3 {
    margin-bottom: 0.75rem;
    color: var(--pink);
}

.panel p:last-child {
    margin-bottom: 0;
}

/* === Section === */
.section {
    margin-bottom: 3rem;
}

.section__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 2rem;
}

/* === Event Card === */
.event-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: box-shadow 0.3s;
    margin-bottom: 2rem;
}

.event-card:hover {
    box-shadow: var(--shadow-xl);
}

@media (min-width: 1024px) {
    .event-card__inner {
        display: flex;
    }
}

.event-card__badge {
    background: linear-gradient(135deg, var(--pink) 0%, #ec4899 50%, var(--purple) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    min-height: 18rem;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .event-card__badge {
        width: 24rem;
        min-height: auto;
    }
}

.event-card__number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.event-card__label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.event-card__body {
    padding: 2rem 2.5rem;
    flex: 1;
}

@media (min-width: 1024px) {
    .event-card__body {
        padding: 3rem;
    }
}

.event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.event-card__meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-card__meta-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--pink);
    flex-shrink: 0;
}

.event-card__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
    transition: color 0.2s;
}

.event-card__title a {
    color: var(--gray-900);
    text-decoration: none;
}

.event-card:hover .event-card__title a {
    color: var(--pink);
}

.event-card__desc {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.event-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.event-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.event-card__tag--talks {
    background: var(--pink-light);
    color: var(--pink);
}

.event-card__tag--upcoming {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--green);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
}

/* === Event Detail Hero === */
.event-hero {
    background: linear-gradient(135deg, var(--pink) 0%, #ec4899 50%, var(--purple) 100%);
    color: #fff;
    padding: 5rem 2rem;
}

.event-hero__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.event-hero__top {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.event-hero__number {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.event-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.event-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-hero__meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
}

@media (max-width: 640px) {
    .event-hero { padding: 3rem 1rem; }
    .event-hero__title { font-size: 1.75rem; }
    .event-hero__number { font-size: 2.5rem; padding: 1.5rem; }
}

/* === Info Cards (location, date, registration on event page) === */
.info-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.info-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: box-shadow 0.2s;
}

.info-card:hover {
    box-shadow: var(--shadow-xl);
}

.info-card--gradient {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: #fff;
    border: none;
}

.info-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.info-card--gradient .info-card__icon {
    background: rgba(255,255,255,0.2);
}

.info-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.info-card--gradient .info-card__title {
    color: #fff;
}

.info-card__text {
    font-size: 1.1rem;
    color: var(--gray-700);
}

.info-card--gradient .info-card__text {
    color: rgba(255,255,255,0.9);
}

/* === Talk Cards (event detail) === */
.talks-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .talks-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.talk-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.talk-card:hover {
    box-shadow: var(--shadow-xl);
}

.talk-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.talk-card__desc {
    color: var(--gray-700);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1rem;
}

.talk-card__speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.talk-card__speaker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.talk-card__speaker-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gray-500);
    overflow: hidden;
    flex-shrink: 0;
}

.talk-card__speaker-name {
    font-weight: 500;
    color: var(--gray-900);
}

.talk-card__speaker-name:hover {
    color: var(--pink);
}

.talk-card__speaker-company {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Talk links */
.talk-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.talk-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--pink);
    font-weight: 500;
}

.talk-links a:hover {
    color: var(--pink-dark);
}

/* === Speakers Grid === */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.speaker-card {
    border-radius: var(--radius);
    border: 1px solid #e5e7eb52;
    transition: box-shadow 0.2s;
}

.speaker-card:hover {
    box-shadow: var(--shadow-lg);
}

.speaker-card__photo {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%
}

.speaker-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-card__placeholder {
    font-size: 4rem;
    color: var(--gray-300);
}

.speaker-card__info {
    padding: 1rem;
}

.speaker-card__name {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.speaker-card__name a {
    color: var(--gray-800);
}

.speaker-card__name a:hover {
    color: var(--pink);
}

.speaker-card__company {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* === Speaker Detail === */
.speaker-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .speaker-detail {
        flex-direction: row;
    }
}

.speaker-detail__photo {
    width: 100%;
    max-width: 250px;
}

@media (min-width: 768px) {
    .speaker-detail__photo {
        flex: 0 0 25%;
    }
}

.speaker-detail__photo-img {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-detail__photo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-detail__info {
    flex: 1;
}

.speaker-detail__name {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 0.5rem;
}

.speaker-detail__company {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.speaker-detail__bio {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.speaker-detail__social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.speaker-detail__social a {
    color: var(--pink);
    font-weight: 500;
}

.speaker-detail__social a:hover {
    text-decoration: underline;
}

/* Share button */
.speaker-detail__share {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Speaker stats */
.speaker-stats {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.speaker-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.speaker-stats__number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pink);
    line-height: 1;
}

.speaker-stats__label {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: center;
}

@media (max-width: 640px) {
    .speaker-stats {
        gap: 1rem;
        padding: 1rem;
    }
    .speaker-stats__number {
        font-size: 1.5rem;
    }
}

/* External talks badge */
.talk-item__event-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.75rem;
    background: var(--purple);
    color: #fff;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Speaker talks list */
.speaker-talks .talk-item {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
    transition: box-shadow 0.2s;
}

.speaker-talks .talk-item:hover {
    box-shadow: var(--shadow-lg);
}

.speaker-talks .talk-item__meta {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.speaker-talks .talk-item__meta a {
    color: var(--pink);
}

.speaker-talks .talk-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.speaker-talks .talk-item__desc {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

/* === Footer === */
.footer {
    background: #000;
    color: rgba(255,255,255,0.7);
    padding: 3rem 1rem;
    margin-top: auto;
}

.footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer__col {
    flex: 1 1 auto;
}

.footer__col:last-child {
    text-align: right;
}

@media (max-width: 640px) {
    .footer__col:last-child {
        text-align: left;
    }
}

.footer__copyright {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
}

.footer__links {
    font-size: 0.875rem;
}

.footer__links a {
    color: rgba(255,255,255,0.7);
    margin-right: 1.5rem;
}

.footer__links a:hover {
    color: var(--pink);
}

.footer__social {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

@media (max-width: 640px) {
    .footer__social {
        justify-content: flex-start;
    }
}

.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    transition: all 0.2s;
}

.footer__social a:hover {
    background: var(--pink);
    color: #fff;
}

/* === Tags === */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tag--completed {
    background: var(--gray-200);
    color: var(--gray-600);
}

.tag--upcoming {
    background: var(--green-light);
    color: var(--green);
}

.tag--online {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.tag--offline {
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple);
}

/* === Page content (from markdown) === */
.md-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.md-content ul, .md-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style-position: outside;
}

.md-content li {
    margin-bottom: 0.25rem;
}

.md-content blockquote {
    border-left: 3px solid var(--pink);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--gray-600);
}

/* === Utility === */
.text-muted { color: var(--gray-500); }
.text-pink { color: var(--pink); }
.text-gray-600 { color: var(--gray-600); }
.mb-0 { margin-bottom: 0; }
.back-link { display: inline-block; margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* SVG icons inline */
.icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    vertical-align: middle;
    flex-shrink: 0;
}

/* === Talk Page Styles === */
.breadcrumb {
    background: var(--gray-50);
    padding: 1rem 0;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--pink);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb__separator {
    margin: 0 0.5rem;
    color: var(--gray-500);
}

.talk-hero {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    padding: 3rem 0;
    color: white;
}

.talk-hero__inner {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.talk-hero__tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.talk-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: white;
}

@media (max-width: 768px) {
    .talk-hero__title {
        font-size: 1.75rem;
    }
}

.talk-card:hover a,
.talk-item__title:hover a {
    color: var(--pink);
}

/* === Social Buttons === */
.speaker-detail__social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    color: white !important;
}

.social-btn__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.social-btn--telegram {
    background: #0088cc;
}

.social-btn--telegram:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,136,204,.3);
}

.social-btn--github {
    background: #24292e;
}

.social-btn--github:hover {
    background: #1a1e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(36,41,46,.3);
}

.social-btn--twitter {
    background: #1da1f2;
}

.social-btn--twitter:hover {
    background: #0d8bd9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(29,161,242,.3);
}

.social-btn--other {
    background: var(--gray-700);
}

.social-btn--other:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(55,65,81,.3);
}

@media (max-width: 640px) {
    .speaker-detail__social {
        flex-direction: column;
    }

    .social-btn {
        justify-content: center;
    }
}
