

/* Start:/bitrix/templates/aeilus_research_institute/styles.css?17652273467539*/
/* BASIC RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #111827;
    background: #f9fafb;
}

/* LAYOUT */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
}

.site-footer {
    flex-shrink: 0;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 16px;
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #111827;
    color: #f9fafb;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 16px;
}

/* LOGO */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 8px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #22c55e);
    color: #0b1120;
}

.logo-text {
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* NAV */
.header-center {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    text-decoration: none;
    color: #e5e7eb;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    background-color: rgba(248, 250, 252, 0.1);
    color: #ffffff;
}

/* SEARCH */
.header-search {
    display: flex;
    align-items: center;
    background: #020617;
    border-radius: 999px;
    padding: 4px 8px;
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.header-search__input {
    border: none;
    outline: none;
    background: transparent;
    color: #e5e7eb;
    font-size: 14px;
    padding: 4px 6px;
    min-width: 120px;
}

.header-search__input::placeholder {
    color: #6b7280;
}

.header-search__button {
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    padding: 0 4px 0 6px;
    color: #9ca3af;
}

/* ACCOUNT ICON */
.header-account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #020617;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 16px;
}

/* BURGER */
.header-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.header-burger span {
    height: 2px;
    width: 100%;
    background: #e5e7eb;
    border-radius: 999px;
}

/* SECTIONS GENERIC */
.section {
    padding: 48px 0;
}

.section--alt {
    background: #f3f4f6;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* CARDS GRID */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cards-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* RESEARCH CARD */
.research-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.research-card__category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.research-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.research-card__value {
    font-size: 12px;
    color: #16a34a;
    font-weight: 500;
}

.research-card__meta {
    font-size: 12px;
    color: #6b7280;
}

.research-card__link {
    margin-top: 8px;
    font-size: 14px;
    color: #6366f1;
    text-decoration: none;
}

.research-card__link:hover {
    text-decoration: underline;
}

/* TAGS / FILTERS */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.chip {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    font-size: 12px;
    background: #f9fafb;
    cursor: pointer;
}

.chip--active {
    background: #111827;
    color: #f9fafb;
    border-color: #111827;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #22c55e);
    color: #0b1120;
}

.btn-outline {
    background: transparent;
    color: #111827;
    border: 1px solid #d1d5db;
}

/* FORMS */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.form-field {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field label {
    font-size: 13px;
    color: #4b5563;
}

.form-field input,
.form-field select,
.form-field textarea {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 14px;
    font-family: inherit;
}

.form-field textarea {
    min-height: 80px;
    resize: vertical;
}

/* RESEARCHERS */
.researcher-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.researcher-card__name {
    font-weight: 600;
}

.researcher-card__value {
    font-size: 13px;
    color: #16a34a;
}

/* FOOTER */
.site-footer {
    background: #0f172a;
    color: #9ca3af;
    padding: 16px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-links a,
.footer-right a {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: none;
    margin-right: 12px;
}

.footer-links a:hover,
.footer-right a:hover {
    color: #e5e7eb;
}

/* RESPONSIVE HEADER */
@media (max-width: 960px) {
    .header-center {
        position: fixed;
        inset: 56px 0 auto 0;
        padding: 12px 16px 16px;
        background: #020617;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        transform: translateY(-120%);
        transition: transform 0.2s ease;
    }

    .header-center.is-open {
        transform: translateY(-2%);
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .header-search {
        width: 100%;
    }

    .header-burger {
        display: flex;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 32px 0;
    }

    .section-title {
        font-size: 20px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.site-header {
    z-index: 3000;
}

.header-burger {
    position: relative;
    z-index: 3100;
}

#js-main-menu {
    z-index: 2000;
}
/* End */
/* /bitrix/templates/aeilus_research_institute/styles.css?17652273467539 */
