:root {
    color-scheme: light;
    --public-bg: #eef3f8;
    --public-surface: #ffffff;
    --public-surface-soft: #f3f7f8;
    --public-surface-tint: #e9f5f2;
    --public-text: #101827;
    --public-muted: #5b687c;
    --public-accent: #0f766e;
    --public-accent-strong: #0a5852;
    --public-blue: #2563eb;
    --public-sky: #0284c7;
    --public-amber: #d97706;
    --public-rose: #be123c;
    --public-violet: #7c3aed;
    --public-lime: #4d7c0f;
    --public-border: rgba(16, 24, 39, 0.12);
    --public-border-strong: rgba(16, 24, 39, 0.18);
    --public-shadow: 0 18px 46px rgba(16, 24, 39, 0.08);
    --public-shadow-soft: 0 8px 24px rgba(16, 24, 39, 0.06);
}

* {
    box-sizing: border-box;
}

body.block__public {
    margin: 0;
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0, rgba(238, 243, 248, 0.96) 460px, rgba(247, 249, 251, 0.98) 100%),
        var(--public-bg);
    color: var(--public-text);
    font: 15px/1.5 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

.block__public_header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid var(--public-border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
    backdrop-filter: blur(18px);
}

.b_public_header--wrapper {
    width: min(1180px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.b_public_header--brand,
.b_public_header--link,
.b_public_header--button {
    text-decoration: none;
}

.b_public_header--brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0;
}

.b_public_header--mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--public-accent), var(--public-blue));
    color: #ffffff;
    font-size: 13px;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.24);
}

.b_public_header--nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.b_public_header--nav::-webkit-scrollbar {
    display: none;
}

.b_public_header--link {
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--public-muted);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.b_public_header--link.__active,
.b_public_header--link:hover {
    background: var(--public-surface-tint);
    color: var(--public-accent-strong);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.b_public_header--button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-radius: 8px;
    background: var(--public-text);
    color: #ffffff;
    font-weight: 850;
    box-shadow: 0 12px 28px rgba(16, 24, 39, 0.16);
}

.block__projects {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 56px;
}

.b_projects--hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 24px;
    align-items: end;
    padding: 28px 0 22px;
}

.b_projects--eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--public-accent-strong);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.b_projects--title {
    max-width: 760px;
    margin: 0;
    font-size: 44px;
    line-height: 1.06;
    letter-spacing: 0;
}

.b_projects--text {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--public-muted);
    font-size: 17px;
}

.b_projects--hero_stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.b_projects--stat {
    min-height: 86px;
    display: grid;
    align-content: center;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: var(--public-surface);
}

.b_projects--stat strong {
    font-size: 26px;
    line-height: 1;
}

.b_projects--stat em {
    color: var(--public-muted);
    font-style: normal;
}

.block__projects_filter {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px) auto auto auto;
    align-items: end;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: var(--public-surface);
    box-shadow: var(--public-shadow);
}

.b_projects_filter--field {
    display: grid;
    gap: 6px;
}

.b_projects_filter--label {
    color: var(--public-muted);
    font-size: 13px;
    font-weight: 700;
}

.b_projects_filter--input {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--public-text);
    font: inherit;
}

.b_projects_filter--views {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: #f9fbfd;
}

.b_projects_filter--view,
.b_projects_filter--button,
.b_projects_filter--reset {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border-radius: 8px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.b_projects_filter--view {
    height: 32px;
    color: var(--public-muted);
}

.b_projects_filter--view.__active {
    background: var(--public-surface);
    color: var(--public-accent-strong);
    box-shadow: 0 2px 8px rgba(24, 33, 47, 0.08);
}

.b_projects_filter--button {
    border: 0;
    background: var(--public-accent);
    color: #ffffff;
    cursor: pointer;
}

.b_projects_filter--reset {
    color: var(--public-muted);
}

.block__projects_result {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.b_projects_result--summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--public-muted);
}

.b_projects_result--summary span {
    padding: 7px 10px;
    border-radius: 8px;
    background: var(--public-surface-soft);
}

.b_projects_result--grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.block__project_card {
    min-width: 0;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: var(--public-surface);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(24, 33, 47, 0.06);
}

.b_project_card--link {
    display: grid;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.b_project_card--preview {
    min-height: 132px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--project-color, var(--public-accent)) 16%, #ffffff);
    color: var(--project-color, var(--public-accent));
}

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

.b_project_card--mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #ffffff;
    font-size: 20px;
    font-weight: 900;
}

.b_project_card--body {
    display: grid;
    gap: 9px;
    padding: 15px;
}

.b_project_card--category {
    width: max-content;
    max-width: 100%;
    padding: 4px 8px;
    border-radius: 8px;
    background: var(--public-surface-soft);
    color: var(--public-accent-strong);
    font-size: 12px;
    font-weight: 800;
}

.b_project_card--title {
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
}

.b_project_card--text {
    min-height: 45px;
    margin: 0;
    color: var(--public-muted);
}

.b_project_card--meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--public-muted);
    font-size: 13px;
}

.b_project_card--meta span {
    padding: 5px 7px;
    border-radius: 8px;
    background: #f6f8fb;
}

.b_projects_result--table_wrap {
    overflow-x: auto;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: var(--public-surface);
}

.b_projects_result--table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.b_projects_result--table th,
.b_projects_result--table td {
    padding: 12px;
    border-bottom: 1px solid var(--public-border);
    text-align: left;
    vertical-align: top;
}

.b_projects_result--table th {
    color: var(--public-muted);
    font-size: 13px;
}

.b_projects_result--table_link {
    color: var(--public-accent-strong);
    font-weight: 800;
    text-decoration: none;
}

.b_projects_result--more {
    display: flex;
    justify-content: center;
}

.b_projects_result--more_button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--public-accent);
    border-radius: 8px;
    background: var(--public-accent);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.b_projects_result--more_button:hover,
.b_projects_result--more_button:focus-visible {
    background: var(--public-accent-strong);
}

.b_projects_result--pager {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.b_projects_result--page {
    min-width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: var(--public-surface);
    color: var(--public-text);
    font-weight: 750;
    text-decoration: none;
}

.b_projects_result--page.__active {
    background: var(--public-accent);
    color: #ffffff;
}

.b_projects_result--empty {
    padding: 24px;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: var(--public-surface);
    color: var(--public-muted);
}

.block__public_home,
.block__project_detail,
.block__public_section,
.block__item_detail {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 0 64px;
}

.b_public_home--hero,
.b_project_detail--hero,
.b_public_section--hero,
.b_item_detail--hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 32px;
    align-items: center;
    padding: 52px 0 42px;
}

.b_public_section--hero {
    position: relative;
    min-height: 264px;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--public-border);
}

.b_public_section--hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(15, 118, 110, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95), transparent 74%);
}

.b_public_section--copy {
    max-width: 780px;
}

.b_public_home--eyebrow,
.b_public_sections--eyebrow,
.b_project_detail--category,
.b_public_section--eyebrow,
.b_item_detail--eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--public-accent-strong);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.b_public_home--title,
.b_project_detail--title,
.b_public_section--title,
.b_item_detail--title {
    margin: 0;
    font-size: 56px;
    line-height: 1.04;
    letter-spacing: 0;
}

.b_public_home--text,
.b_project_detail--text,
.b_public_section--text,
.b_item_detail--text {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--public-muted);
    font-size: 18px;
}

.b_public_home--actions,
.b_project_detail--actions,
.b_item_detail--actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.b_public_home--button,
.b_project_detail--button,
.b_section_empty--button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: var(--public-surface);
    color: var(--public-text);
    font-weight: 800;
    text-decoration: none;
}

.b_public_home--button.__primary,
.b_project_detail--button.__primary,
.b_section_empty--button {
    border-color: var(--public-accent);
    background: var(--public-accent);
    color: #ffffff;
}

.b_public_home--trail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.b_public_home--trail a {
    padding: 7px 10px;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--public-muted);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.b_public_home--trail a:hover,
.b_public_home--trail a:focus-visible {
    border-color: color-mix(in srgb, var(--public-blue) 40%, var(--public-border));
    color: var(--public-blue);
    outline: none;
}

.b_public_home--stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.b_public_home--stat,
.b_project_overview--stat {
    min-height: 92px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: var(--public-surface);
}

.b_public_section--panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-self: stretch;
    align-content: end;
}

.b_public_section--stat {
    min-height: 118px;
    display: grid;
    align-content: end;
    gap: 8px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 250, 0.92)),
        var(--public-surface);
    box-shadow: var(--public-shadow-soft);
}

.b_public_section--stat:nth-child(2) {
    color: var(--public-blue);
}

.b_public_section--stat:nth-child(3) {
    color: var(--public-amber);
}

.b_public_home--stat:nth-child(2),
.b_public_home--stat:nth-child(5),
.b_public_sections--item:nth-child(3n + 2) em {
    color: var(--public-blue);
}

.b_public_home--stat:nth-child(3),
.b_public_sections--item:nth-child(3n) em {
    color: var(--public-amber);
}

.b_public_home--stat:nth-child(4),
.b_public_sections--item:nth-child(4n) em {
    color: var(--public-rose);
}

.b_public_home--stat strong,
.b_public_section--stat strong,
.b_project_overview--stat strong {
    font-size: 30px;
    line-height: 1;
}

.b_public_home--stat em,
.b_public_section--stat em,
.b_project_overview--stat em {
    color: var(--public-muted);
    font-style: normal;
}

.block__public_sections,
.block__public_featured,
.block__project_sections,
.block__section_entries,
.block__section_empty {
    margin-top: 28px;
}

.b_public_sections--head {
    margin-bottom: 14px;
}

.b_public_sections--title {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
}

.b_public_sections--text {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--public-muted);
    font-size: 16px;
}

.b_public_sections--grid,
.b_section_entries--grid {
    display: grid;
    gap: 14px;
}

.b_public_sections--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.b_section_entries--grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 390px), 1fr));
}

.b_public_sections--item,
.b_section_entries--item,
.block__section_empty {
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: var(--public-surface);
    box-shadow: 0 8px 24px rgba(24, 33, 47, 0.05);
}

.b_public_sections--item {
    display: grid;
    gap: 8px;
    min-height: 176px;
    padding: 16px;
    text-decoration: none;
}

.b_public_sections--item:hover,
.b_public_sections--item:focus-visible,
.block__project_card:hover,
.block__project_card:focus-within {
    border-color: color-mix(in srgb, var(--public-accent) 45%, var(--public-border));
    box-shadow: 0 16px 36px rgba(24, 33, 47, 0.1);
    outline: none;
    transform: translateY(-2px);
}

.b_public_sections--item,
.block__project_card {
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.b_public_sections--item small {
    width: max-content;
    max-width: 100%;
    padding: 4px 8px;
    border-radius: 8px;
    background: #f5f8fb;
    color: var(--public-muted);
    font-size: 12px;
    font-weight: 850;
}

.b_public_sections--item strong {
    font-size: 18px;
}

.b_public_sections--item span {
    color: var(--public-muted);
}

.b_public_sections--item em {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #f2f6f9;
    color: var(--public-accent-strong);
    font-style: normal;
    font-weight: 900;
}

.block__public_join {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 34px;
    padding: 28px 0 0;
    border-top: 1px solid var(--public-border);
}

.b_public_join--title {
    margin: 0;
    font-size: 30px;
    line-height: 1.15;
}

.b_public_join--text {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--public-muted);
    font-size: 16px;
}

.b_public_join--actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.b_project_detail--crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--public-muted);
}

.b_project_detail--crumb {
    text-decoration: none;
}

.b_project_detail--preview {
    min-height: 280px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: color-mix(in srgb, var(--project-color, var(--public-accent)) 18%, #ffffff);
}

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

.b_project_detail--mark {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #ffffff;
    color: var(--project-color, var(--public-accent));
    font-size: 32px;
    font-weight: 900;
}

.b_item_detail--mark {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: color-mix(in srgb, var(--project-color, var(--public-accent)) 18%, #ffffff);
    color: var(--project-color, var(--public-accent));
    font-size: 34px;
    font-weight: 900;
}

.block__item_meta {
    margin-top: 12px;
}

.block__project_overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
}

.b_project_overview--grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.b_project_overview--meta {
    display: grid;
    gap: 8px;
}

.b_project_overview--meta div {
    display: grid;
    gap: 3px;
    padding: 12px;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background: var(--public-surface);
}

.b_project_overview--meta span {
    color: var(--public-muted);
    font-size: 13px;
}

.b_section_entries--head {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.b_section_entries--eyebrow {
    display: inline-flex;
    color: var(--public-accent-strong);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.b_section_entries--heading {
    width: 100%;
    margin: 0;
    font-size: 26px;
    line-height: 1.16;
}

.b_section_entries--item {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    min-height: 236px;
    padding: 22px;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.b_section_entries--item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--project-color, var(--public-accent));
}

.b_section_entries--item.__featured {
    grid-column: 1 / -1;
    min-height: 286px;
    padding: 28px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--project-color, var(--public-accent)) 10%, #ffffff), #ffffff 48%),
        var(--public-surface);
}

.b_section_entries--item.__featured::after {
    content: "01";
    position: absolute;
    right: 28px;
    bottom: 18px;
    color: rgba(16, 24, 39, 0.06);
    font-size: 124px;
    font-weight: 950;
    line-height: 0.82;
    pointer-events: none;
}

.b_section_entries--item:hover,
.b_section_entries--item:focus-within {
    border-color: color-mix(in srgb, var(--project-color, var(--public-accent)) 44%, var(--public-border));
    box-shadow: 0 20px 44px rgba(16, 24, 39, 0.1);
    transform: translateY(-2px);
}

.b_section_entries--aside {
    display: grid;
    align-content: space-between;
    justify-items: start;
    gap: 18px;
}

.b_section_entries--mark {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--project-color, var(--public-accent)) 22%, var(--public-border));
    border-radius: 8px;
    background: color-mix(in srgb, var(--project-color, var(--public-accent)) 14%, #ffffff);
    color: var(--project-color, var(--public-accent));
    font-weight: 950;
}

.b_section_entries--index {
    color: rgba(16, 24, 39, 0.22);
    font-size: 32px;
    font-weight: 950;
    line-height: 1;
}

.b_section_entries--body {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 10px;
}

.b_section_entries--top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.b_section_entries--label,
.b_section_entries--section {
    width: max-content;
    max-width: 100%;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 850;
}

.b_section_entries--label {
    background: color-mix(in srgb, var(--project-color, var(--public-accent)) 12%, #ffffff);
    color: var(--project-color, var(--public-accent));
}

.b_section_entries--section {
    background: #f3f6f9;
    color: var(--public-muted);
}

.b_section_entries--title {
    margin: 0;
    font-size: 24px;
    line-height: 1.14;
    letter-spacing: 0;
}

.b_section_entries--item.__featured .b_section_entries--title {
    max-width: 850px;
    font-size: 34px;
    line-height: 1.08;
}

.b_section_entries--title a {
    text-decoration: none;
}

.b_section_entries--title a:hover,
.b_section_entries--title a:focus-visible {
    color: var(--project-color, var(--public-accent));
    outline: none;
}

.b_section_entries--text {
    max-width: 760px;
    margin: 0;
    color: var(--public-muted);
    font-size: 16px;
}

.b_section_entries--item.__featured .b_section_entries--text {
    font-size: 18px;
}

.b_section_entries--meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 2px;
    color: var(--public-muted);
    font-size: 13px;
}

.b_section_entries--meta span {
    max-width: 100%;
    padding: 6px 9px;
    border: 1px solid rgba(16, 24, 39, 0.08);
    border-radius: 8px;
    background: #f7f9fb;
}

.b_section_entries--button {
    width: max-content;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--public-text);
    color: #ffffff;
    font-weight: 850;
    text-decoration: none;
}

.b_section_entries--button:hover,
.b_section_entries--button:focus-visible {
    background: var(--project-color, var(--public-accent));
    outline: none;
}

.block__section_empty {
    display: grid;
    justify-items: start;
    gap: 14px;
    padding: 22px;
}

.b_section_empty--title {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
}

@media (max-width: 900px) {
    .b_public_header--wrapper,
    .b_projects--hero,
    .block__projects_filter,
    .b_public_home--hero,
    .b_project_detail--hero,
    .b_public_section--hero,
    .b_item_detail--hero,
    .block__project_overview,
    .block__public_join {
        grid-template-columns: 1fr;
    }

    .b_public_header--nav {
        justify-content: start;
        overflow-x: auto;
    }

    .b_projects_result--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .b_public_sections--grid,
    .b_section_entries--grid,
    .b_project_overview--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .b_public_section--hero {
        min-height: 0;
    }

    .b_public_join--actions {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .b_public_header--wrapper {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        padding: 10px 0;
    }

    .b_public_header--nav {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .b_public_header--brand {
        grid-column: 1;
        grid-row: 1;
    }

    .b_public_header--link {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .b_public_header--button {
        grid-column: 2;
        grid-row: 1;
        width: auto;
        text-align: center;
    }

    .b_projects--title,
    .b_public_home--title,
    .b_project_detail--title,
    .b_public_section--title {
        font-size: 32px;
    }

    .b_public_section--hero {
        padding: 34px 0 30px;
    }

    .b_projects--hero_stats,
    .b_projects_result--grid,
    .b_public_home--stats,
    .b_public_sections--grid,
    .b_section_entries--grid,
    .b_project_overview--grid {
        grid-template-columns: 1fr;
    }

    .b_public_section--panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .b_public_section--stat {
        min-height: 86px;
        padding: 12px;
    }

    .b_public_section--stat strong {
        font-size: 26px;
    }

    .b_section_entries--item,
    .b_section_entries--item.__featured {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 18px;
    }

    .b_section_entries--item.__featured::after {
        display: none;
    }

    .b_section_entries--aside {
        grid-template-columns: auto 1fr;
        align-items: center;
        align-content: center;
    }

    .b_section_entries--index {
        justify-self: end;
        font-size: 24px;
    }

    .b_section_entries--title,
    .b_section_entries--item.__featured .b_section_entries--title {
        font-size: 24px;
        line-height: 1.14;
    }

    .b_section_entries--text,
    .b_section_entries--item.__featured .b_section_entries--text {
        font-size: 15px;
    }
}
