/*
Theme Name: Crypto Reviews Trust
Theme URI: https://crypto-reviews.ru/
Author: Crypto Reviews
Description: Consumer review directory for cryptocurrency exchanges.
Version: 3.0.0
Text Domain: crypto-reviews-trust
*/

:root {
    --cr-black: #191919;
    --cr-ink: #242424;
    --cr-muted: #696a6d;
    --cr-border: #dedee2;
    --cr-border-dark: #c7c7cc;
    --cr-canvas: #f7f7f8;
    --cr-paper: #ffffff;
    --cr-soft: #f1f1f3;
    --cr-green: #00b67a;
    --cr-green-dark: #008f60;
    --cr-green-soft: #e9f8f2;
    --cr-danger: #c84838;
    --cr-width: 1120px;
    --cr-copy: 760px;
    --glsr-star-full: #00b67a;
    --glsr-star-empty: #d8d8dc;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cr-paper);
    color: var(--cr-ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
    font-family: Arial, Helvetica, sans-serif;
}

button,
input,
select,
textarea {
    font-size: inherit;
}

a {
    color: inherit;
    text-underline-offset: 3px;
}

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

[hidden] {
    display: none !important;
}

.cr-shell {
    width: min(calc(100% - 40px), var(--cr-width));
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    z-index: 99999;
    top: 8px;
    left: 8px;
    width: auto;
    height: auto;
    clip: auto;
    padding: 10px 14px;
    background: #fff;
    color: #000;
}

:focus-visible {
    outline: 3px solid #55c8a1;
    outline-offset: 2px;
}

/* Header */

.cr-header {
    position: relative;
    z-index: 50;
    background: var(--cr-black);
    color: #fff;
}

.cr-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 62px;
    gap: 38px;
}

.cr-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.cr-brand__mark {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    background: var(--cr-green);
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.cr-nav__list,
.cr-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.cr-nav a {
    color: #e9e9e9;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.cr-nav a:hover,
.cr-nav .current-menu-item > a {
    color: #fff;
    text-decoration: underline;
}

.cr-header__action {
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid #737373;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.cr-header__action:hover {
    border-color: #fff;
    background: #2c2c2c;
}

/* Shared controls */

.cr-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}

.cr-button--primary {
    border-color: var(--cr-green-dark);
    background: var(--cr-green);
    color: #fff;
}

.cr-button--primary:hover {
    background: var(--cr-green-dark);
}

.cr-breadcrumbs {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    padding: 22px 0 18px;
    color: var(--cr-muted);
    font-size: 12px;
    line-height: 1.3;
}

.cr-breadcrumbs a {
    color: #4d4e51;
}

.cr-breadcrumbs span[aria-current="page"] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cr-search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.cr-search-field svg {
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #6b6c70;
    stroke-width: 1.8;
    pointer-events: none;
}

.cr-search-field input {
    width: 100%;
    min-height: 48px;
    padding: 11px 82px 11px 45px;
    border: 1px solid var(--cr-border-dark);
    border-radius: 3px;
    background: #fff;
    color: var(--cr-ink);
}

.cr-search-field input::placeholder {
    color: #85868a;
}

.cr-search-field input:focus {
    border-color: #6a6b6f;
    outline: 2px solid rgba(0, 182, 122, 0.22);
    outline-offset: 0;
}

.cr-search-field button {
    position: absolute;
    right: 5px;
    min-height: 36px;
    padding: 6px 9px;
    border: 0;
    background: transparent;
    color: #4d4e51;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
}

/* Directory */

.cr-directory-head {
    border-bottom: 1px solid var(--cr-border);
    background: #fff;
}

.cr-directory-head__title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    padding: 0 0 28px;
}

.cr-directory-head h1,
.cr-page-head h1,
.cr-company-head h1,
.cr-archive__head h1 {
    margin: 0;
    color: var(--cr-ink);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.cr-directory-head__title p {
    max-width: 700px;
    margin: 7px 0 0;
    color: var(--cr-muted);
    font-size: 14px;
}

.cr-directory {
    padding: 30px 0 50px;
    background: var(--cr-canvas);
}

.cr-directory-search {
    max-width: 680px;
}

.cr-directory-search > label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
}

.cr-directory-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0 16px;
}

.cr-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cr-filter-pills button {
    min-height: 34px;
    padding: 6px 13px;
    border: 1px solid var(--cr-border-dark);
    border-radius: 999px;
    background: #fff;
    color: #3f4043;
    font-size: 13px;
    cursor: pointer;
}

.cr-filter-pills button:hover {
    border-color: #8b8c90;
}

.cr-filter-pills button.is-active {
    border-color: var(--cr-ink);
    background: var(--cr-ink);
    color: #fff;
}

.cr-sort {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--cr-muted);
    font-size: 12px;
    white-space: nowrap;
}

.cr-sort select,
.cr-review-rating-filter select {
    min-height: 36px;
    padding: 6px 30px 6px 10px;
    border: 1px solid var(--cr-border-dark);
    border-radius: 3px;
    background-color: #fff;
    color: var(--cr-ink);
    font-weight: 600;
}

.cr-result-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 0 10px;
    font-size: 13px;
}

.cr-result-line p {
    margin: 0;
    color: #4f5053;
    font-weight: 700;
}

.cr-result-line a {
    color: #4f5053;
}

.cr-company-list .ninja_table_wrapper {
    margin: 0 !important;
    border: 1px solid var(--cr-border) !important;
    border-radius: 4px !important;
    background: #fff !important;
    overflow: hidden !important;
}

.cr-company-list .ninja_table_wrapper tr.footable-filtering,
.cr-company-list .ninja_table_wrapper .ninja_table_search,
.cr-company-list .ninja_table_wrapper .ninja_table_title,
.cr-company-list .ninja_table_wrapper tr.footable-paging {
    display: none !important;
}

.cr-company-list table,
.cr-company-list .footable {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: collapse !important;
    background: #fff !important;
}

.cr-company-list thead {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
}

.cr-company-list tbody {
    display: block !important;
    width: 100% !important;
}

.cr-company-list tbody tr {
    display: grid !important;
    grid-template-columns: 78px minmax(220px, 1fr) 205px 118px 126px !important;
    width: 100% !important;
    min-height: 104px !important;
    align-items: center !important;
    border: 0 !important;
    border-bottom: 1px solid var(--cr-border) !important;
    background: #fff !important;
    box-shadow: none !important;
}

.cr-company-list tbody tr:last-child {
    border-bottom: 0 !important;
}

.cr-company-list tbody tr:hover {
    background: #fbfbfb !important;
}

.cr-company-list tbody td {
    display: block !important;
    min-width: 0 !important;
    padding: 18px 14px !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--cr-ink) !important;
    text-align: left !important;
}

.cr-company-list tbody td:first-child {
    padding-left: 20px !important;
    padding-right: 4px !important;
}

.cr-company-list tbody td:first-child a {
    display: grid !important;
    width: 54px !important;
    height: 54px !important;
    place-items: center !important;
    border: 1px solid var(--cr-border) !important;
    border-radius: 4px !important;
    background: #fff !important;
    overflow: hidden !important;
}

.cr-company-list tbody td:first-child img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    padding: 5px !important;
    object-fit: contain !important;
}

.cr-company-list tbody td:nth-child(2) > a {
    display: block !important;
    overflow: hidden !important;
    color: var(--cr-ink) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
    text-overflow: ellipsis !important;
}

.cr-company-list tbody td:nth-child(2) > a:hover {
    text-decoration: underline !important;
}

.cr-company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 7px;
}

.cr-company-meta span {
    padding: 2px 7px;
    border: 1px solid #d5d5d9;
    border-radius: 999px;
    color: #646568;
    font-size: 11px;
    line-height: 1.5;
}

.cr-company-list tbody td:nth-child(3) {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
}

.cr-company-list .glsr-summary,
.cr-company-list .glsr-summary-wrap {
    display: block !important;
    margin: 0 !important;
}

.cr-company-list .glsr-summary-rating {
    color: #38393c !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.cr-rating-strip {
    display: flex;
    gap: 2px;
}

.cr-rating-box {
    position: relative;
    display: grid;
    width: 27px;
    height: 26px;
    place-items: center;
    background: #d9d9dd;
}

.cr-rating-box::after {
    content: "★";
    color: #fff;
    font-size: 16px;
    line-height: 1;
}

.cr-company-list tbody td:nth-child(4) {
    color: #55565a !important;
    font-size: 13px !important;
    white-space: nowrap !important;
}

.cr-company-list tbody td:nth-child(5) {
    padding-right: 20px !important;
    text-align: right !important;
}

.cr-company-list tbody td:nth-child(5) .nt_btn,
.cr-company-list tbody td:nth-child(5) a {
    display: inline-flex !important;
    min-height: 38px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 13px !important;
    border: 1px solid var(--cr-border-dark) !important;
    border-radius: 3px !important;
    background: #fff !important;
    color: var(--cr-ink) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
}

.cr-company-list tbody td:nth-child(5) a:hover {
    border-color: var(--cr-ink) !important;
}

.cr-directory-note {
    max-width: 820px;
    margin: 16px 0 0;
    color: var(--cr-muted);
    font-size: 12px;
}

.cr-no-results {
    padding: 38px 20px;
    border: 1px solid var(--cr-border);
    background: #fff;
    text-align: center;
}

.cr-no-results strong {
    font-size: 18px;
}

.cr-no-results p {
    margin: 5px 0 14px;
    color: var(--cr-muted);
}

.cr-no-results button {
    padding: 8px 13px;
    border: 1px solid var(--cr-border-dark);
    border-radius: 3px;
    background: #fff;
    font-weight: 700;
    cursor: pointer;
}

.cr-about-directory {
    padding: 38px 0 55px;
    border-top: 1px solid var(--cr-border);
}

.cr-about-directory details {
    max-width: 850px;
}

.cr-about-directory summary {
    width: fit-content;
    color: #424346;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.cr-about-directory details[open] summary {
    margin-bottom: 26px;
}

/* Pages and review product */

.cr-page,
.cr-company-page,
.cr-article-page,
.cr-archive {
    padding-bottom: 70px;
}

.cr-page-head,
.cr-company-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 6px 0 24px;
    border-bottom: 1px solid var(--cr-border);
}

.cr-company-head__identity {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 16px;
}

.cr-company-head__identity > div:last-child {
    min-width: 0;
}

.cr-company-head__identity p {
    margin: 0 0 2px;
    color: var(--cr-muted);
    font-size: 12px;
}

.cr-company-head__logo {
    display: grid;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid var(--cr-border);
    border-radius: 4px;
    overflow: hidden;
}

.cr-company-head__logo img {
    width: 100%;
    height: 100%;
    padding: 5px;
    object-fit: contain;
}

.cr-review-layout {
    display: grid;
    grid-template-columns: minmax(0, 780px) minmax(230px, 280px);
    align-items: start;
    justify-content: space-between;
    gap: 50px;
    padding-top: 28px;
}

.cr-reading-layout {
    max-width: var(--cr-copy);
    padding-top: 32px;
}

.cr-review-aside {
    position: sticky;
    top: 24px;
    border: 1px solid var(--cr-border);
    border-radius: 4px;
    background: #fff;
}

.admin-bar .cr-review-aside {
    top: 56px;
}

.cr-review-aside section {
    padding: 20px;
}

.cr-review-aside h2 {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.3;
}

.cr-review-aside ul {
    padding: 0 0 0 18px;
    margin: 0;
    color: #56575a;
    font-size: 13px;
}

.cr-review-aside li + li {
    margin-top: 7px;
}

.cr-review-aside > a {
    display: block;
    padding: 13px 20px;
    border-top: 1px solid var(--cr-border);
    color: #414245;
    font-size: 13px;
    font-weight: 700;
}

.cr-review-tool {
    margin: 0 0 24px;
    padding: 18px;
    border: 1px solid var(--cr-border);
    border-radius: 4px;
    background: var(--cr-canvas);
}

.cr-review-tool__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 9px;
}

.cr-review-tool__top label {
    font-size: 13px;
    font-weight: 700;
}

.cr-review-tool__top span {
    color: var(--cr-muted);
    font-size: 12px;
}

.cr-review-tool__controls {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto;
    align-items: center;
    gap: 8px;
}

.cr-review-tool__controls .cr-search-field input {
    min-height: 42px;
    padding-right: 12px;
}

.cr-review-rating-filter select {
    min-height: 42px;
}

.cr-review-tool__controls > button {
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid var(--cr-border-dark);
    border-radius: 3px;
    background: #fff;
    color: #414245;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.cr-review-empty {
    margin: 14px 0;
    padding: 22px;
    border: 1px solid var(--cr-border);
    background: var(--cr-canvas);
    color: var(--cr-muted);
    text-align: center;
}

/* Site Reviews: data stays untouched; only its presentation changes. */

.glsr-reviews {
    display: block !important;
    margin: 0 !important;
    border-top: 1px solid var(--cr-border) !important;
}

.glsr-review {
    display: grid !important;
    grid-template-columns: 145px minmax(0, 1fr) !important;
    gap: 18px 24px !important;
    margin: 0 !important;
    padding: 24px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--cr-border) !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.glsr-review:last-child {
    border-bottom: 0 !important;
}

.glsr-review-rating {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 !important;
}

.glsr-review-date {
    grid-column: 1 !important;
    color: var(--cr-muted) !important;
    font-size: 12px !important;
}

.glsr-review-author {
    grid-column: 1 !important;
    color: #414245 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.glsr-review-title,
.glsr-review-content,
.glsr-review-response {
    grid-column: 2 !important;
}

.glsr-review-title {
    grid-row: 1 !important;
}

.glsr-review-title h3,
.glsr-review-title {
    margin: 0 !important;
    color: var(--cr-ink) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.glsr-review-content {
    color: #424346 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.glsr-review-content p {
    margin-top: 0 !important;
}

.glsr-review-response {
    padding: 14px !important;
    border-left: 3px solid var(--cr-border-dark) !important;
    background: var(--cr-canvas) !important;
    color: #505155 !important;
    font-size: 13px !important;
}

.glsr-review .glsr-star {
    width: 20px !important;
    height: 20px !important;
}

.glsr-pagination,
.glsr-pagination ul {
    margin-top: 22px !important;
}

.glsr-form {
    margin-top: 24px !important;
    padding: 22px !important;
    border: 1px solid var(--cr-border) !important;
    border-radius: 4px !important;
    background: var(--cr-canvas) !important;
}

.glsr-form label {
    color: var(--cr-ink) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.glsr-input,
.glsr-select,
.glsr-textarea,
.cr-prose input:not([type="checkbox"], [type="radio"], [type="submit"]),
.cr-prose select,
.cr-prose textarea {
    width: 100% !important;
    padding: 10px 12px !important;
    border: 1px solid var(--cr-border-dark) !important;
    border-radius: 3px !important;
    background: #fff !important;
    color: var(--cr-ink) !important;
}

.glsr-button,
.cr-prose input[type="submit"],
.cr-prose button[type="submit"] {
    min-height: 42px !important;
    padding: 9px 17px !important;
    border: 1px solid var(--cr-green-dark) !important;
    border-radius: 3px !important;
    background: var(--cr-green) !important;
    color: #fff !important;
    font-weight: 700 !important;
    cursor: pointer !important;
}

/* Long-form content */

.cr-prose {
    min-width: 0;
}

.cr-prose > :first-child {
    margin-top: 0;
}

.cr-prose h2,
.cr-prose h3,
.cr-prose h4 {
    color: var(--cr-ink);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.cr-prose h2 {
    margin: 2em 0 0.65em;
    font-size: 24px;
}

.cr-prose h3 {
    margin: 1.8em 0 0.6em;
    font-size: 20px;
}

.cr-prose h4 {
    margin: 1.6em 0 0.5em;
    font-size: 17px;
}

.cr-prose p,
.cr-prose li {
    max-width: 76ch;
}

.cr-prose p {
    margin: 0 0 1.1em;
}

.cr-prose ul,
.cr-prose ol {
    padding-left: 24px;
}

.cr-prose li + li {
    margin-top: 7px;
}

.cr-prose a {
    color: #006b49;
}

.cr-prose blockquote {
    margin: 26px 0;
    padding: 17px 20px;
    border-left: 3px solid var(--cr-green);
    background: var(--cr-green-soft);
}

.cr-prose figure {
    margin: 26px 0;
}

.cr-prose figure img,
.cr-article__cover img {
    display: block;
    border-radius: 3px;
}

.cr-prose table:not(.footable) {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.cr-prose table:not(.footable) th,
.cr-prose table:not(.footable) td {
    padding: 10px;
    border: 1px solid var(--cr-border);
    text-align: left;
}

.cr-prose hr {
    margin: 32px 0;
    border: 0;
    border-top: 1px solid var(--cr-border);
}

.cr-article {
    max-width: var(--cr-copy);
    margin-inline: auto;
}

.cr-article__head {
    padding: 10px 0 24px;
    border-bottom: 1px solid var(--cr-border);
}

.cr-article__meta {
    margin: 0 0 8px;
    color: var(--cr-muted);
    font-size: 12px;
}

.cr-article__head h1 {
    margin: 0;
    font-size: clamp(30px, 4.2vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.cr-article__cover {
    margin: 28px 0;
}

/* Archives */

.cr-archive__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding: 4px 0 24px;
    border-bottom: 1px solid var(--cr-border);
}

.cr-archive__head p {
    margin: 6px 0 0;
    color: var(--cr-muted);
    font-size: 13px;
}

.cr-archive-search {
    display: flex;
}

.cr-archive-search input,
.cr-error__search input {
    min-height: 40px;
    padding: 8px 11px;
    border: 1px solid var(--cr-border-dark);
    border-radius: 3px 0 0 3px;
}

.cr-archive-search button,
.cr-error__search button {
    min-height: 40px;
    padding: 8px 13px;
    border: 1px solid var(--cr-ink);
    border-radius: 0 3px 3px 0;
    background: var(--cr-ink);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.cr-feed {
    border-top: 1px solid var(--cr-border);
}

.cr-feed-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 32px;
    gap: 24px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--cr-border);
}

.cr-feed-item__meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--cr-muted);
    font-size: 12px;
}

.cr-feed-item__body h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
}

.cr-feed-item__body h2 a {
    text-decoration: none;
}

.cr-feed-item__body h2 a:hover {
    text-decoration: underline;
}

.cr-feed-item__body p {
    margin: 7px 0 0;
    color: #5f6063;
    font-size: 14px;
}

.cr-feed-item__arrow {
    color: #6d6e72;
    font-size: 22px;
    text-decoration: none;
}

.cr-pagination {
    margin-top: 28px;
}

.cr-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cr-pagination .page-numbers {
    display: grid;
    min-width: 36px;
    min-height: 36px;
    place-items: center;
    padding: 5px 9px;
    border: 1px solid var(--cr-border);
    border-radius: 3px;
    text-decoration: none;
}

.cr-pagination .current {
    border-color: var(--cr-ink);
    background: var(--cr-ink);
    color: #fff;
}

.cr-empty-state {
    padding: 55px 0;
}

.cr-empty-state h2 {
    margin: 0;
    font-size: 24px;
}

.cr-empty-state p {
    margin: 6px 0 20px;
    color: var(--cr-muted);
}

/* Error page */

.cr-error {
    padding: 70px 0 100px;
}

.cr-error__inner {
    max-width: 620px;
}

.cr-error__code {
    margin: 0 0 8px;
    color: var(--cr-green-dark);
    font-size: 14px;
    font-weight: 700;
}

.cr-error h1 {
    margin: 0;
    font-size: 34px;
}

.cr-error h1 + p {
    margin: 8px 0 22px;
    color: var(--cr-muted);
}

.cr-error__search {
    display: flex;
    max-width: 480px;
    margin-bottom: 18px;
}

.cr-error__search input {
    flex: 1;
    min-width: 0;
}

/* Footer */

.cr-footer {
    padding: 36px 0 22px;
    border-top: 1px solid #313133;
    background: var(--cr-black);
    color: #d8d8da;
}

.cr-footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(300px, auto);
    gap: 50px;
    align-items: start;
}

.cr-brand--footer {
    margin-bottom: 10px;
}

.cr-footer__about p {
    max-width: 520px;
    margin: 0;
    color: #a9a9ac;
    font-size: 12px;
}

.cr-footer__links,
.cr-footer nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.cr-footer__links a,
.cr-footer nav a {
    color: #e7e7e8;
    font-size: 12px;
}

.cr-footer__legal {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    margin-top: 28px;
    border-top: 1px solid #343436;
    color: #8e8e91;
    font-size: 11px;
}

@media (max-width: 920px) {
    .cr-header__inner {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .cr-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        margin: 0 -20px;
        padding: 0 20px 12px;
        overflow-x: auto;
    }

    .cr-nav__list,
    .cr-nav ul {
        min-width: max-content;
    }

    .cr-header__action {
        justify-self: end;
    }

    .cr-company-list tbody tr {
        grid-template-columns: 72px minmax(190px, 1fr) 175px 105px 112px !important;
    }

    .cr-review-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }

    .cr-review-aside {
        position: static;
        max-width: 780px;
    }
}

@media (max-width: 760px) {
    .cr-shell {
        width: min(calc(100% - 28px), var(--cr-width));
    }

    .cr-nav {
        margin-inline: -14px;
        padding-inline: 14px;
    }

    .cr-directory-head__title,
    .cr-page-head,
    .cr-company-head,
    .cr-archive__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .cr-directory-head h1,
    .cr-page-head h1,
    .cr-company-head h1,
    .cr-archive__head h1 {
        font-size: 26px;
    }

    .cr-directory-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .cr-result-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .cr-company-list tbody tr {
        grid-template-columns: 68px minmax(0, 1fr) !important;
        min-height: 0 !important;
        padding: 15px 0 !important;
    }

    .cr-company-list tbody td {
        padding: 4px 14px !important;
    }

    .cr-company-list tbody td:first-child {
        grid-column: 1;
        grid-row: 1 / span 3;
        padding: 4px 0 4px 14px !important;
    }

    .cr-company-list tbody td:first-child a {
        width: 48px !important;
        height: 48px !important;
    }

    .cr-company-list tbody td:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .cr-company-list tbody td:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
        flex-flow: row wrap !important;
        align-items: center !important;
    }

    .cr-company-list tbody td:nth-child(4) {
        grid-column: 2;
        grid-row: 3;
    }

    .cr-company-list tbody td:nth-child(5) {
        grid-column: 1 / -1;
        grid-row: 4;
        padding: 10px 14px 0 !important;
        text-align: left !important;
    }

    .cr-company-list tbody td:nth-child(5) .nt_btn,
    .cr-company-list tbody td:nth-child(5) a {
        width: 100% !important;
    }

    .cr-rating-box {
        width: 23px;
        height: 22px;
    }

    .cr-rating-box::after {
        font-size: 14px;
    }

    .cr-review-tool__controls {
        grid-template-columns: 1fr;
    }

    .cr-review-tool__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .glsr-review {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        padding: 20px 0 !important;
    }

    .glsr-review-rating,
    .glsr-review-title,
    .glsr-review-content,
    .glsr-review-response,
    .glsr-review-date,
    .glsr-review-author {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .glsr-review-title {
        order: -1;
    }

    .cr-feed-item {
        grid-template-columns: 1fr 24px;
        gap: 8px 14px;
    }

    .cr-feed-item__meta {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .cr-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cr-footer__legal {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .cr-header__inner {
        min-height: 56px;
    }

    .cr-brand__name {
        font-size: 16px;
    }

    .cr-header__action {
        padding-inline: 10px;
        font-size: 12px;
    }

    .cr-breadcrumbs {
        padding-top: 16px;
    }

    .cr-filter-pills {
        width: 100%;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        overflow-x: auto;
    }

    .cr-filter-pills button {
        flex: 0 0 auto;
    }

    .cr-sort {
        width: 100%;
        justify-content: space-between;
    }

    .cr-sort select {
        max-width: 190px;
    }

    .cr-company-meta {
        display: none;
    }

    .cr-company-head__identity {
        align-items: flex-start;
    }

    .cr-company-head__logo {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .cr-footer__links,
    .cr-footer nav ul {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
