:root {
    --primary-color: #1e2330;
    --bg-color: #F7F9FB;
    --font-heading: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg-color);
    font-family: var(--font-body);
    color: #1a1a1a;
}

h1, h2, h3 {
    font-family: var(--font-heading);
}

a {
    color: #1a1a1a;
    font-size: 17px;
    /*text-decoration: none;*/
}

.card {
    max-width: 480px;
    margin: 40px auto;
    padding: 32px 24px;
    background: var(--bg-color);
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    text-align: center;
    font-family: var(--font-body);
}

.card-icon-header {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    height: 0;
}

.icon-btn {
    position: absolute;
    top: 16px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    z-index: 2;
}

.icon-btn:hover {
    background: rgba(0, 0, 0, 0.12);
}

.icon-btn-left {
    left: 16px;
}

.icon-btn-right {
    right: 16px;
}

.card-avatar {
    position: relative;
    display: inline-block;
}

.card-avatar img,
.card-avatar-fallback {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(0, 0, 0, 0.12));
    border: 1px solid #e2e2e2;
}

.verified-badge {
    position: absolute;
    bottom: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    background: var(--bg-color);
}

.verified-badge svg {
    display: block;
    width: 100%;
    height: 100%;
}

.verified-badge svg circle {
    fill: var(--primary-color);
}

.card-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 36px;
    font-family: var(--font-heading);
}

.card-name {
    font-family: var(--font-heading);
    margin: 0 0 2px;
}

.card-handle {
    color: #777;
    font-size: 13px;
    margin: 0 0 8px;
}

.card-description {
    margin: 0 0 24px;
    color: #555;
}

.card-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-link {
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 8px;
    background: #0000000f;
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

.card-link:hover {
    filter: brightness(1.08);
    color: #000;
}

.card-link-icon,
.card-link-icon-empty {
    grid-column: 1;
}

.card-link-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.card-link-text {
    grid-column: 2;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-link-icon-monogram {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
}

.card-link-icon-image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.not-found,
.error-page {
    max-width: 480px;
    margin: 80px auto;
    text-align: center;
}

.directory {
    max-width: 640px;
    margin: 40px auto;
    padding: 0 16px;
}

.directory-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 24px;
}

.directory-nav-letter {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
}

.directory-nav-letter.is-active {
    color: #10B981;
    font-weight: 600;
}

.directory-nav-letter--wide {
    width: auto;
    padding: 0 6px;
}

.directory-section-title {
    font-family: var(--font-heading);
    margin: 32px 0 16px;
}

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

.directory-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 10px;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    background: #fff;
}

.directory-card-avatar,
.directory-card-avatar-fallback {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.directory-card-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color, #1e2330);
    color: #fff;
    font-size: 24px;
}

.directory-card-name {
    font-weight: 600;
    font-size: 13px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.directory-card-handle {
    font-size: 12px;
    color: #888;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.directory-empty {
    color: #777;
}

.directory-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    font-size: 14px;
}

.directory-pagination a {
    color: #10B981;
    font-weight: 600;
    text-decoration: none;
}

.directory-pagination a:hover {
    text-decoration: underline;
}

.directory-pagination-status {
    color: #999;
}

.link-quiet {
    color: #10B981;
    font-weight: 600;
    text-decoration: none;
}

.link-quiet:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.home-shell {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}

@media (min-width: 900px) {
    .home-shell {
        grid-template-columns: 1fr 1fr;
    }
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1a1a1a;
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #10B981;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-word {
    font-weight: 700;
    font-size: 17px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 640px;
    margin: 10px auto 0 auto;
    padding: 16px;
    border: 1px solid #e2e2e2;
    background: #fff;
    border-radius: 8px;
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.site-header nav a:not(.site-header-btn) {
    color: #555;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.site-header nav a:not(.site-header-btn):hover {
    color: #1a1a1a;
}

.site-header-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.site-header-btn-ghost {
    color: #1a1a1a;
}

.site-header-btn-ghost:hover {
    color: #10B981;
}

.site-header-btn-primary {
    background: #10B981;
    color: #fff;
}

.site-header-btn-primary:hover {
    filter: brightness(1.08);
}

.home-form-side {
    display: flex;
    flex-direction: column;
    padding: 24px 24px 32px;
}

.home-form-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.home-form-side .site-footer {
    max-width: none;
    margin: 0;
    padding: 16px 0 0;
}

.home-form-side .site-footer-nav {
    justify-content: flex-start;
    gap: 12px;
}

.home-form-inner {
    width: 100%;
    max-width: 360px;
}

.home-form-inner h1 {
    font-size: 26px;
    margin: 0 0 4px;
}

.home-subtitle {
    color: #777;
    margin-top: 0;
    margin-bottom: 24px;
}

.home-form-links {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.9;
    text-align: center;
    color: #6b7280;
}

.home-form-links a {
    color: var(--primary-color);
    font-size: inherit;
}

.home-notice {
    background: #fff4e5;
    color: #8a5a00;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.home-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.home-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: #555;
}

.home-form input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.home-form button {
    margin-top: 8px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #10B981;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

/* Ниже 900px колонка встаёт под формой - стена из двух десятков карточек там не нужна,
   поэтому она просто не показывается (и не тянет за собой аватары). */
.home-art-side {
    display: none;
}

@media (min-width: 900px) {
    .home-art-side {
        display: block;
        position: relative;
        overflow: hidden;
    }
}

/* Кладка на column-count, без JS: разная высота карточек берётся из самих данных -
   у превью от двух до четырёх ссылок, см. HomeController::randomShowcaseCards().
   Абсолютное позиционирование принципиально: витрина заведомо выше экрана, и в потоке она
   растянула бы строку грида, утащив форму слева на середину очень длинной страницы. */
/* Ширину держим здесь, а не на самой карточке: превью, ограниченное max-width внутри широкой
   колонки, центрировалось бы в ней, и пустые поля по краям читались бы как огромные
   промежутки между столбцами. Ограничив кладку, получаем колонки ровно по 240px, карточки
   заполняют их целиком, а зазор остаётся равным column-gap.

   Уже 240px превью перестаёт быть похожим на визитку, поэтому под узкое окно подстраивается не
   ширина колонок, а их количество: 240 * N + 14 * (N - 1). Правая половина равна половине окна,
   отсюда и точки переключения - плюс 40px внутренних отступов колонки. */
.showcase-masonry {
    position: absolute;
    top: -30px;
    left: 20px;
    right: 20px;
    max-width: 240px;
    margin: 0 auto;
    column-count: 1;
    column-gap: 14px;
}

@media (min-width: 1068px) {
    .showcase-masonry {
        max-width: 494px;
        column-count: 2;
    }
}

@media (min-width: 1576px) {
    .showcase-masonry {
        max-width: 748px;
        column-count: 3;
    }
}

.showcase-card {
    break-inside: avoid;
    margin-bottom: 14px;
    padding: 16px 12px;
    border: 1px solid #e2e2e2;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
}

.showcase-card:hover {
    border-color: #d0d3d8;
}

.showcase-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.showcase-name {
    font-weight: 700;
    font-size: 13.5px;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.showcase-handle {
    font-size: 11.5px;
    color: #6b7280;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.showcase-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.showcase-links .card-link {
    padding: 9px 12px;
    font-size: 12px;
    grid-template-columns: 22px 1fr 22px;
}

.showcase-links .card-link-icon,
.showcase-links .card-link-icon-empty {
    width: 22px;
    height: 22px;
}

/* Витрина заведомо длиннее экрана и обрезается; края растворяются в фоне. */
.showcase-fade {
    position: absolute;
    left: 0;
    right: 0;
    height: 190px;
    pointer-events: none;
    z-index: 1;
}

.showcase-fade--top {
    top: 0;
}

.showcase-fade--bottom {
    bottom: 0;
}

.discover {
    max-width: 480px;
    margin: 8px auto 40px;
}

.discover-carousel-wrap {
    position: relative;
    margin-bottom: 32px;
}

.discover-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.discover-carousel::-webkit-scrollbar {
    display: none;
}

.discover-carousel-item {
    flex: 0 0 auto;
    width: 116px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 10px;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: inherit;
}

.directory-card:hover,
.discover-carousel-item:hover {
    border-color: #d0d3d8;
}

.discover-carousel-avatar,
.discover-carousel-avatar-fallback {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 1px solid #e2e2e2;
}

.discover-carousel-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(0, 0, 0, 0.12));
    background-color: var(--primary-color, #1e2330);
    color: #fff;
    font-size: 24px;
}

.discover-carousel-name {
    font-weight: 600;
    font-size: 13px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.discover-carousel-handle {
    font-size: 12px;
    color: #6b7280;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.discover-carousel-next,
.discover-carousel-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discover-carousel-next {
    right: -6px;
}

.discover-carousel-prev {
    left: -6px;
}

.discover-carousel-next[hidden],
.discover-carousel-prev[hidden] {
    display: none;
}

.discover-more-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.discover-more-header h2 {
    font-size: 16px;
    margin: 0;
}

.discover-more-toggle {
    background: none;
    border: none;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    color: #6b7280;
}

.discover-more-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.discover-chip {
    padding: 6px 12px;
    border-radius: 999px;
    background: #f0f0f0;
    color: #333;
    font-size: 13px;
    text-decoration: none;
}

.discover-chip:hover {
  background: rgba(0, 0, 0, 0.12);  
}

.discover-chip.is-hidden {
    display: none;
}

@media (max-width: 480px) {
    .card {
        margin: 16px auto;
        padding: 24px 16px;
        border-radius: 12px;
    }

    .card-avatar img,
    .card-avatar-fallback {
        width: 80px;
        height: 80px;
    }

    .directory {
        margin: 24px auto;
    }

    .directory-nav-letter {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .directory-nav-letter--wide {
        width: auto;
    }

    .home-form-side {
        padding: 16px 16px 24px;
    }
}

.page-content {
    max-width: 640px;
    margin: 40px auto;
    padding: 0 16px;
}

.page-content a {
    font-size: inherit;
}

.page-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-list-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
}

.page-list-item:last-child {
    border-bottom: none;
}

.page-list-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
}

.page-list-title:hover {
    text-decoration: underline;
}

.page-list-excerpt {
    margin: 6px 0 0;
    color: #555;
    line-height: 1.5;
}

.page-body p {
    line-height: 1.6;
    margin: 0 0 16px;
}

.page-body ul,
.page-body ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.page-body blockquote {
    margin: 0 0 16px;
    padding-left: 16px;
    border-left: 3px solid #10B981;
    color: #555;
}

.site-footer {
    max-width: 640px;
    margin: 40px auto 0;
    padding: 24px 16px;
}

.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer-nav a {
    color: #6b7280;
    font-size: 13px;
    text-decoration: none;
}

.site-footer-nav a:hover {
    text-decoration: underline;
}

.site-footer-nav + .site-footer-nav {
    margin-top: 8px;
}

.site-footer--narrow {
    max-width: 480px;
    padding: 16px 4px 20px;
    margin-top: 24px;
}

.site-footer--narrow .site-footer-nav {
    justify-content: flex-start;
    gap: 12px;
}

.card-schedule {
    margin-top: 24px;
    text-align: left;
}

.card-schedule-title {
    font-size: 16px;
    margin: 0 0 12px;
    text-align: left;
    font-family: var(--font-heading, inherit);
}

/* Days across, time-of-day bands down: a week now fits the card's width, so nothing scrolls. */
.card-schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.card-schedule-day-label {
    font-size: 11px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 2px;
}

.card-schedule-grid .card-schedule-cell {
    height: 25px;
}

.card-schedule-cell {
    border-radius: 6px;
    background: #0000000f;
}

.card-schedule-cell--0 { background: color-mix(in srgb, var(--primary-color, #10B981) 8%, #0000000f); }
.card-schedule-cell--1 { background: color-mix(in srgb, var(--primary-color, #10B981) 22%, #0000000f); }
.card-schedule-cell--2 { background: color-mix(in srgb, var(--primary-color, #10B981) 36%, #0000000f); }
.card-schedule-cell--3 { background: color-mix(in srgb, var(--primary-color, #10B981) 50%, #0000000f); }
.card-schedule-cell--4 { background: color-mix(in srgb, var(--primary-color, #10B981) 64%, #0000000f); }
.card-schedule-cell--5 { background: color-mix(in srgb, var(--primary-color, #10B981) 78%, #0000000f); }
.card-schedule-cell--6 { background: color-mix(in srgb, var(--primary-color, #10B981) 92%, #0000000f); }
.card-schedule-cell--7 { background: var(--primary-color, #10B981); }

.card-schedule-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 14px;
    font-size: 11px;
    color: #6b7280;
}

.card-schedule-legend .card-schedule-cell {
    flex: none;
    width: 20px;
    height: 10px;
}

.share-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.share-overlay[hidden] {
    display: none;
}

@media (min-width: 560px) {
    .share-overlay {
        align-items: center;
        padding: 24px;
    }
}

.share-modal {
    width: 100%;
    max-width: 420px;
    max-height: 92vh;
    overflow-y: auto;
    background: #fff;
    color: #1a1a1a;
    border-radius: 20px 20px 0 0;
    padding: 20px 20px 28px;
}

@media (min-width: 560px) {
    .share-modal {
        border-radius: 20px;
    }
}

.share-modal-head {
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    align-items: center;
    margin-bottom: 18px;
}

.share-modal-head h2 {
    grid-column: 2;
    text-align: center;
    font-size: 17px;
    margin: 0;
    font-family: var(--font-heading, inherit);
}

.share-close {
    grid-column: 3;
    justify-self: end;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: none;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.share-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #1a1a1a;
}

.share-preview {
    color: #1a1a1a;
    border-radius: 16px;
    padding: 28px 20px 24px;
    text-align: center;
    margin-bottom: 20px;
    background: #F7F9FB;
    border: 1px solid #e2e2e2;
}

.share-preview-avatar-wrap {
    position: relative;
    display: inline-block;
}

.share-preview-avatar,
.share-preview-avatar-fallback {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 1px solid #e2e2e2;
}

.share-preview-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(0, 0, 0, 0.12));
    background-color: var(--primary-color, #1e2330);
    color: #fff;
    font-size: 24px;
    font-family: var(--font-heading, inherit);
}

.share-preview-verified {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color, #1e2330);
    border: 2px solid var(--bg-color, #1c1c1c);
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-preview-name {
    font-weight: 700;
    font-size: 2em;
    margin-top: 12px;
    font-family: var(--font-heading, inherit);
}

.share-preview-handle {
    color: #777;
    font-size: 13px;
    margin-top: 2px;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 8px;
    margin-bottom: 4px;
}

@media (min-width: 420px) {
    .share-options {
        grid-template-columns: repeat(6, 1fr);
    }
}

.share-option {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
}

.share-option-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.share-option span:last-child {
    font-size: 11px;
    color: #777;
    font-weight: 600;
}

.share-option-icon--copy {
    background: #eee;
    color: #333;
}

.share-option-icon--x {
    background: #000;
}

.share-option-icon--fb {
    background: #0866FF;
}

.share-option-icon--wa {
    background: #25D366;
}

.share-option-icon--tg {
    background: #26A5E4;
}

.share-option-icon--mail {
    background: #888;
}

.share-option.is-copied .share-option-icon--copy {
    background: #059669;
    color: #fff;
}

.share-promo {
    padding-top: 20px;
    text-align: center;
}

.share-promo-title {
    font-size: 14px;
    margin: 0 0 4px;
}

.share-promo-sub {
    font-size: 12px;
    color: #777;
    margin: 0 0 14px;
    line-height: 1.4;
}

.share-promo-cta {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: #10B981;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.share-promo-cta:hover {
    filter: brightness(1.08);
}

@media screen and (max-width: 768px) {
  .discover-carousel-next, .discover-carousel-prev {
    display: none;
  }

  .card {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .discover, .site-footer--narrow {
    padding: 0 16px;
  }

}