/* Базовий CSS reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  text-rendering: optimizeSpeed;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ----------- */

/* 1. ПЕРЕМЕННЫЕ И ОБЩИЕ СТИЛИ */
:root {
    --bg-dark: #121212;
    --bg-light: #1A1A1D;
    --primary-color: #61FFD8;
    --secondary-color: #C039A3;
    --text-primary: #EAEAEA;
    --text-secondary: #B0B0B0;
    --font-headings: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    --header-height: 80px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-primary);
}

ul {
    list-style: none;
}

/* 2. ХЕДЕР */
.header {
    background-color: rgba(26, 26, 29, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header__logo {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 24px;
    color: var(--text-primary);
}

.header__logo:hover {
    color: var(--primary-color);
}

.header__nav-list {
    display: flex;
    gap: 35px;
}

.header__nav-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.header__nav-link:hover {
    color: var(--text-primary);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__burger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* 3. ФУТЕР */
.footer {
    background-color: var(--bg-dark);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer__logo {
    font-family: var(--font-headings);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 15px;
}

.footer__tagline {
    color: var(--text-secondary);
    font-size: 14px;
    max-width: 250px;
}

.footer__title {
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer__nav-list li,
.footer__legal-list li,
.footer__contact-list li {
    margin-bottom: 12px;
}

.footer__nav-link,
.footer__legal-link,
.footer__contact-link {
    color: var(--text-secondary);
    font-size: 15px;
}

.footer__nav-link:hover,
.footer__legal-link:hover,
.footer__contact-link:hover {
    color: var(--primary-color);
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.footer__contact-item .lucide {
    flex-shrink: 0;
    color: var(--primary-color);
    width: 20px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* 4. АДАПТИВНОСТЬ */
@media (max-width: 992px) {
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .header__nav {
        display: none; /* Будет управляться через JS */
        /* Стили для мобильного меню будут добавлены позже */
    }
    
    .header__burger-btn {
        display: block;
    }

    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__tagline {
        margin: 0 auto 30px;
    }

    .footer__contact-item {
        justify-content: center;
    }
}

/* 5. СЕКЦІЯ HERO */
.hero {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Крапки тепер трохи яскравіші і використовують колір з палітри */
    background-image: radial-gradient(rgba(97, 255, 216, 0.1) 1px, transparent 1.5px);
    background-size: 70px 70px;
    /* Використовуємо анімацію background-position, це надійніше */
    animation: move-background 25s linear infinite;
    z-index: 0;
}

/* І ЗАМІНИТИ АНІМАЦІЮ */
@keyframes move-background {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -70px 70px;
    }
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-family: var(--font-headings);
    font-size: clamp(2.5rem, 5vw, 4rem); /* Адаптивный размер шрифта */
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--primary-color), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 25px;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    height: 45px; /* Резервируем место, чтобы избежать скачков контента */
}

.hero__typing-text {
    color: var(--text-primary);
    font-weight: 700;
}

.hero__typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1.5rem;
    background-color: var(--primary-color);
    margin-left: 5px;
    animation: blink 0.7s infinite;
    vertical-align: bottom;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero__cta-button .lucide {
    transition: transform 0.3s ease;
}

.hero__cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.hero__cta-button:hover .lucide {
    transform: translateX(5px);
}

/* Адаптация для Hero */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: calc(100vh - var(--header-height));
        padding: 60px 0;
    }
    .hero__title {
        margin-bottom: 20px;
    }
    .hero__subtitle {
        height: 70px; /* Больше места для переноса строк */
        margin-bottom: 30px;
    }
}
/* 6. СЕКЦИЯ ABOUT */
.about {
    background-color: var(--bg-dark); /* Чередуем фон для визуального разделения */
    padding: 120px 0;
    overflow: hidden; /* Важно для анимаций */
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__subtitle {
    display: block;
    font-family: var(--font-headings);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__title {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about__description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.about__description:not(:last-child) {
    margin-bottom: 20px;
}

.about__stats-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about__stats-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__stats-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about__stats-item .lucide {
    color: var(--primary-color);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin-top: 5px;
}

.about__stats-number {
    font-family: var(--font-headings);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.about__stats-description {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Анимация появления при скролле */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Стили для задержки анимации элементов списка */
.about__stats-item.animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}
.about__stats-item.animate-on-scroll:nth-child(3) {
    transition-delay: 0.4s;
}

/* Адаптивность для секции About */
@media (max-width: 992px) {
    .about__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    .about__container {
        gap: 50px;
    }
    .about__title {
        font-size: 2rem;
    }
}

/* 7. СЕКЦИЯ COURSES */
.courses {
    background-color: var(--bg-light);
    padding: 120px 0;
}

/* Общие стили для заголовков секций */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-family: var(--font-headings);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    max-width: 700px;
    margin: 0 auto;
}

/* Сетка курсов */
.courses__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: rgba(97, 255, 216, 0.5); /* Primary color with alpha */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.course-card__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(97, 255, 216, 0.1);
    border-radius: 10px;
    margin-bottom: 25px;
}

.course-card__icon .lucide {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.course-card__title {
    font-family: var(--font-headings);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-card__description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1; /* Позволяет футеру прижаться к низу */
}

.course-card__footer {
    margin-top: 25px;
}

.course-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.course-card__tag {
    background-color: #2a2a2e; /* Slightly different dark bg */
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.course-card__button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.course-card__button:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

@media (max-width: 768px) {
    .courses {
        padding: 80px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
}

/* 8. СЕКЦИЯ PROCESS */
.process {
    background-color: var(--bg-dark);
    padding: 120px 0;
}

.process__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Центральная линия */
.process__timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
    z-index: 0;
}

.process__item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

/* Расположение блоков по сторонам */
.process__item:nth-child(odd) {
    left: 0;
    padding-right: 70px;
    text-align: right;
}

.process__item:nth-child(even) {
    left: 50%;
    padding-left: 70px;
    text-align: left;
}

/* Иконка на линии */
.process__icon {
    position: absolute;
    width: 60px;
    height: 60px;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 0 0 3px var(--primary-color);
    z-index: 1;
}

.process__item:nth-child(even) .process__icon {
    left: -30px;
}

.process__icon .lucide {
    width: 28px;
    height: 28px;
}

/* Стили контента */
.process__content {
    padding: 20px 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
    position: relative;
}

.process__step {
    font-family: var(--font-headings);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.process__item-title {
    font-family: var(--font-headings);
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.process__item-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Анимации для таймлайна */
.process__item.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.process__item:nth-child(odd).animate-on-scroll {
    transform: translateX(-30px);
}
.process__item:nth-child(even).animate-on-scroll {
    transform: translateX(30px);
}

.process__item.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* Адаптивность для таймлайна */
@media screen and (max-width: 900px) {
    .process__timeline::after {
        left: 31px;
    }

    .process__item {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }

    .process__item:nth-child(odd),
    .process__item:nth-child(even) {
        left: 0;
        text-align: left;
    }

    .process__icon {
        left: 0;
    }
    
    .process__item:nth-child(odd) .process__icon,
    .process__item:nth-child(even) .process__icon {
        left: 0;
        transform: translateY(-50%) translateX(-50%);
        margin-left: 31px;
    }

    .process__item:nth-child(odd).animate-on-scroll,
    .process__item:nth-child(even).animate-on-scroll {
        transform: translateX(30px);
    }
}

/* 9. СЕКЦИЯ FAQ */
.faq {
    background-color: var(--bg-light);
    padding: 120px 0;
}

.faq__accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq__item {
    background-color: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.faq__item.active {
    background-color: #1f1f22; /* Slightly lighter dark */
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
}

.faq__question:hover {
    color: var(--primary-color);
}

.faq__icon {
    flex-shrink: 0;
    margin-left: 20px;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.2s ease-out,
                padding-bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq__answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0 25px;
    font-size: 16px;
}

.faq__item.active .faq__answer {
    max-height: 200px; /* Достаточно места для ответа */
    opacity: 1;
    padding-bottom: 25px;
}

/* 10. СЕКЦИЯ CONTACT */
.contact {
    background-color: var(--bg-dark);
    padding: 120px 0;
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.contact__info-title {
    font-family: var(--font-headings);
    font-size: 28px;
    margin-bottom: 20px;
}

.contact__info-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact__info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.contact__info-item .lucide {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact__info-item a {
    color: var(--text-secondary);
}
.contact__info-item a:hover {
    color: var(--primary-color);
}

.contact__socials {
    display: flex;
    gap: 15px;
}

.contact__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.contact__social-link:hover {
    color: var(--bg-dark);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Стили формы */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__form-group {
    position: relative;
}

.contact__form-input {
    width: 100%;
    padding: 18px 20px;
    background-color: var(--bg-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.contact__form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Стили для label (эффект плавающего лейбла) */
.contact__form-label {
    position: absolute;
    top: 19px;
    left: 20px;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact__form-input:focus ~ .contact__form-label,
.contact__form-input:not(:placeholder-shown) ~ .contact__form-label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    color: var(--primary-color);
    background-color: var(--bg-dark);
    padding: 0 5px;
}
/* для select нужно немного иначе */
.contact__form-group select.contact__form-input:focus ~ .contact__form-label,
.contact__form-group select.contact__form-input:valid ~ .contact__form-label {
     top: -10px;
    left: 15px;
    font-size: 12px;
    color: var(--primary-color);
    background-color: var(--bg-dark);
    padding: 0 5px;
}

.contact__form-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--bg-light) inset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
}

textarea.contact__form-input {
    resize: vertical;
    min-height: 120px;
}

.contact__form-button {
    padding: 18px 20px;
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 600;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact__form-button:hover {
    filter: brightness(1.1);
    box-shadow: 0 5px 15px rgba(97, 255, 216, 0.2);
}

#form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
    display: none; /* Скрыто по умолчанию */
}
#form-message.success {
    background-color: rgba(97, 255, 216, 0.1);
    color: var(--primary-color);
    display: block;
}
#form-message.error {
    background-color: rgba(255, 100, 100, 0.1);
    color: #ff6464;
    display: block;
}


/* Адаптивность для Contact */
@media (max-width: 992px) {
    .contact__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}
/* 5. СТРАНИЦЫ ПОЛИТИК */
.pages { padding: 120px 0; background-color: var(--bg-light); }
.pages__container { max-width: 800px; margin: 0 auto; }
.pages__container h1 { font-family: var(--font-headings); font-size: 3rem; margin-bottom: 30px; color: var(--primary-color); }
.pages__container h2 { font-family: var(--font-headings); font-size: 2rem; margin-top: 40px; margin-bottom: 20px; }
.pages__container p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.8; }
.pages__container ul { list-style: disc; margin-left: 20px; margin-bottom: 20px; color: var(--text-secondary); }
.pages__container li { margin-bottom: 10px; }

/* 6. COOKIE POPUP */
.cookie-popup { position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.1); padding: 20px; display: flex; justify-content: center; align-items: center; gap: 25px; z-index: 2000; transform: translateY(100%); transition: transform 0.5s ease-out; }
.cookie-popup.active { transform: translateY(0); }
.cookie-popup__text { color: var(--text-secondary); text-align: center; }
.cookie-popup__btn { background-color: var(--primary-color); color: var(--bg-dark); border: none; padding: 12px 25px; border-radius: 8px; font-weight: 600; cursor: pointer; white-space: nowrap; }
