/* ==========================================================================
   companies.css — стили карточки компании (Mini-CRM)
   Подключается в: companies/detail-alt.html (вынесено из inline <style>, Фаза 6.1)
   ВНИМАНИЕ: companies — hub-модуль (18 apps зависят). Менять осторожно,
   все классы uv-cd-* используются только в detail-alt.html (single-use компонент).
   ========================================================================== */

/* ── Company Detail — Refined Gold ── */

/* Hero header */
.uv-cd-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #e8e4dc;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(135deg, #fffdf8 0%, #fff 50%, var(--uv-bg-warm) 100%);
}
.uv-cd-body {
    padding: .75rem 1.5rem 1rem;
    border: 1px solid #e8e4dc;
    border-top: none;
    border-radius: 0 0 14px 14px;
    background: #fff;
    margin-bottom: 1.5rem;
}
.uv-cd-hero-pro {
    border-color: var(--uv-border);
    box-shadow: 0 2px 16px rgba(13,110,253,.06);
}
.uv-cd-hero-pro + .uv-cd-body {
    border-color: var(--uv-border);
    box-shadow: 0 2px 16px rgba(13,110,253,.06);
}
.uv-cd-avatar-wrap {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
}
.uv-cd-logo {
    width: 100%;
    max-width: 180px;
    margin-bottom: .5rem;
}
.uv-cd-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}
.uv-cd-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e8e4dc;
    background: var(--uv-bg-warm);
}
.uv-cd-hero-pro .uv-cd-avatar { border-color: #c5c0b8; }
.uv-cd-avatar {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.uv-cd-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    border-color: #a09888;
}
.uv-cd-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.uv-cd-avatar a { display: block; width: 100%; height: 100%; }
.uv-cd-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}
.uv-cd-avatar-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: .35;
}
.uv-cd-info { flex: 1; min-width: 0; }
.uv-cd-info h1 {
    font-size: var(--uv-fs-h2);
    font-weight: 700;
    color:var(--uv-text-dark);
    margin: 0 0 .4rem;
    line-height: 1.3;
}
.uv-cd-subtitle {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: .5rem;
}
/* Badges */
.uv-badge { display:inline-flex; align-items:center; gap:.25rem; padding:.2rem .65rem; border-radius:20px; font-size:var(--uv-fs-micro); font-weight:700; letter-spacing:.03em; text-decoration:none; white-space:nowrap; line-height:1.5; }
.uv-badge-pro { background:linear-gradient(135deg,var(--uv-primary),var(--uv-primary-dark)); color:#fff; }
.uv-badge-registry { background:linear-gradient(135deg,#2d8a4e,#1e6b3a); color:#fff; }
.uv-cd-rating-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .65rem;
}
.uv-cd-rating-row a {
    font-size: var(--uv-fs-xs);
    color: var(--uv-text-muted);
    text-decoration: none;
}
.uv-cd-rating-row a:hover { color: var(--uv-primary); }

/* Tags / categories */
.uv-cd-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .4rem;
    margin-bottom: .6rem;
}
.uv-cd-tags-label {
    font-size: var(--uv-fs-caption);
    font-weight: 600;
    color: var(--uv-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-right: .15rem;
}
.uv-cd-tag {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: 6px;
    font-size: var(--uv-fs-caption);
    color: var(--uv-color-dim);
    background: var(--uv-bg-warm);
    text-decoration: none;
    transition: all .2s;
}
.uv-cd-tag:hover {
    background: var(--uv-border);
    color:var(--uv-text-dark);
    text-decoration: none;
}

/* Address (separate line) */
.uv-cd-address {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    font-size: var(--uv-fs-small);
    color: var(--uv-text-dark);
    margin-bottom: .5rem;
    text-align: left;
}
.uv-cd-address i {
    color: var(--uv-primary);
    font-size: var(--uv-fs-small);
    flex-shrink: 0;
    margin-top: .15rem;
}
.uv-cd-address span {
    flex: 1;
}

/* Contact info */
.uv-cd-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1.25rem;
    margin-bottom: .5rem;
}
.uv-cd-contact {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: var(--uv-fs-small);
    color: var(--uv-text-dark);
}
.uv-cd-contact i {
    color: var(--uv-primary);
    font-size: var(--uv-fs-small);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.uv-cd-contact a {
    color: var(--uv-text-dark);
    text-decoration: none;
    transition: color .15s;
}
.uv-cd-contact a:hover { color: var(--uv-primary); }

/* Social links */
.uv-cd-socials {
    display: flex;
    gap: .5rem;
    margin-top: .25rem;
    margin-bottom: .5rem;
}
.uv-cd-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--uv-bg-warm);
    transition: all .2s;
}
.uv-cd-socials a:hover {
    background: var(--uv-border);
    transform: translateY(-2px);
}
.uv-cd-socials img { width: 20px; height: 20px; }

/* Action buttons row */
.uv-cd-actions {
    flex-basis: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem;
    margin-bottom: 0;
}
.uv-cd-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    padding: .5rem;
    border: 1px solid var(--uv-border);
    border-radius: 8px;
    font-size: var(--uv-fs-xs);
    font-weight: 500;
    color: var(--uv-color-dim);
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    text-align: center;
}
.uv-cd-action:hover {
    border-color: var(--uv-primary);
    color:var(--uv-text-dark);
    text-decoration: none;
}
.uv-cd-action-primary {
    background: linear-gradient(135deg, var(--uv-primary), var(--uv-primary-dark));
    color: #fff;
    border-color: transparent;
}
.uv-cd-action-primary:hover {
    background: linear-gradient(135deg, var(--uv-primary-dark), var(--uv-primary-hover));
    color: #fff;
    box-shadow: 0 3px 12px rgba(13,110,253,.25);
}
.uv-cd-action i { font-size: var(--uv-fs-xs); }
@media (min-width: 576px) {
    .uv-cd-action {
        flex-direction: row;
        gap: .4rem;
        padding: .4rem .75rem;
    }
}
@media (min-width: 768px) {
    .uv-cd-actions {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Manager ID */
.uv-cd-manager-id {
    font-size: var(--uv-fs-micro);
    color: var(--uv-text-hint);
}

/* ── Mini CRM ── */
.uv-cd-crm {
    border: 1px solid #e8e4dc;
    border-radius: 10px;
    padding: 1rem;
    background: #fdfcfa;
    margin-bottom: 1rem;
}
.uv-cd-crm-title {
    font-size: var(--uv-fs-xs);
    font-weight: 600;
    color: var(--uv-text-muted);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: .5rem;
}
.uv-cd-crm-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    color: inherit;
}
.uv-cd-crm-toggle:hover .uv-cd-crm-title { color: var(--uv-text-primary, #222); }
.uv-cd-crm-chevron {
    font-size: var(--uv-fs-caption);
    color: var(--uv-text-muted);
    transition: transform .2s ease;
}
.uv-cd-crm-chevron-open { transform: rotate(180deg); }
.uv-cd-crm-sentiment {
    font-size: var(--uv-fs-caption);
    font-weight: 600;
}
.uv-cd-crm-sentiment-positive { color: #2d8a4e; }
.uv-cd-crm-sentiment-negative { color: #d9534f; }
.uv-cd-crm-sentiment-neutral { color: var(--uv-text-muted); }
.uv-cd-crm-note {
    font-size: var(--uv-fs-caption);
    color: var(--uv-color-dim);
    font-style: italic;
    margin: .35rem 0;
}
.uv-cd-crm-dates {
    font-size: var(--uv-fs-micro);
    color: var(--uv-text-hint);
    text-transform: uppercase;
}
.uv-cd-crm-info {
    border: 1px solid #e8e4dc;
    border-radius: 10px;
    padding: 1rem;
    background: var(--uv-bg-warm);
    font-size: var(--uv-fs-caption);
    color: var(--uv-color-dim);
    line-height: 1.6;
}

/* ── Article content ── */
.uv-cd-content {
    margin: 1.25rem 0;
    line-height: 1.7;
    color: var(--uv-text-dark);
}
.uv-cd-content strong { color:var(--uv-text-dark); }

/* ── Video embed ── */
.uv-cd-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.uv-cd-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Assay Registry ── */
.uv-cd-registry {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0faf4 0%, #fff 100%);
    border: 1px solid #c3e6d1;
    margin-bottom: 1.25rem;
}
.uv-cd-registry-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d8a4e, #1e6b3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: var(--uv-fs-h3);
}
.uv-cd-registry-body { flex: 1; }
.uv-cd-registry-title {
    font-size: var(--uv-fs-small);
    font-weight: 700;
    color:var(--uv-text-dark);
    margin-bottom: .3rem;
}
.uv-cd-registry-row {
    font-size: var(--uv-fs-caption);
    color: var(--uv-color-dim);
    line-height: 1.6;
}
.uv-cd-registry-risk {
    margin-top: .5rem;
    font-size: var(--uv-fs-caption);
    color: var(--uv-color-dim);
}
.uv-cd-registry-risk strong { color:var(--uv-text-dark); }
.uv-cd-registry-note {
    font-size: var(--uv-fs-micro);
    color: var(--uv-text-hint);
    margin-top: .25rem;
}

/* ── Meta info ── */
.uv-cd-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    font-size: var(--uv-fs-micro);
    color: var(--uv-text-hint);
    text-transform: uppercase;
    padding: .75rem 0;
    border-top: 1px solid var(--uv-border-light);
    margin-bottom: 1rem;
}
.uv-cd-meta a {
    color: var(--uv-text-muted);
    text-decoration: none;
}
.uv-cd-meta a:hover { color: var(--uv-primary); }
.uv-cd-meta img { border-radius: 50%; vertical-align: middle; margin-right: .25rem; }

/* ── Tabs ── */
.uv-cd-tabs {
    display: flex;
    gap: .25rem;
    border-bottom: 2px solid var(--uv-border);
    margin-bottom: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.uv-cd-tabs::-webkit-scrollbar { display: none; }
.uv-cd-tab {
    padding: .6rem 1rem;
    font-size: var(--uv-fs-xs);
    font-weight: 600;
    color: var(--uv-text-muted);
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    transition: color .2s;
    white-space: nowrap;
}
.uv-cd-tab:hover { color:var(--uv-text-dark); }
.uv-cd-tab.active { color:var(--uv-text-dark); }
.uv-cd-tab.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, var(--uv-primary), var(--uv-primary-dark));
    border-radius: 2px 2px 0 0;
}
.uv-cd-tab-count {
    font-size: var(--uv-fs-micro);
    font-weight: 700;
    color: var(--uv-primary);
    margin-left: .2rem;
    vertical-align: super;
}
.uv-cd-panel {
    display: none;
    padding: 1.25rem 0;
    animation: uvCdFade .25s ease;
}
.uv-cd-panel.active { display: block; }
@keyframes uvCdFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Gallery grid */
.uv-cd-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: .5rem;
}
.uv-cd-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: all .2s;
}
.uv-cd-gallery-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    transform: scale(1.02);
}
.uv-cd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video grid */
.uv-cd-videos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .75rem;
}
.uv-cd-video-card {
    border: 1px solid #e8e4dc;
    border-radius: 10px;
    overflow: hidden;
    transition: all .25s;
    text-decoration: none;
    color:var(--uv-text-dark);
}
.uv-cd-video-card:hover {
    border-color: var(--uv-primary);
    box-shadow: 0 4px 16px rgba(13,110,253,.1);
    transform: translateY(-2px);
    text-decoration: none;
    color:var(--uv-text-dark);
}
.uv-cd-video-card-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--uv-bg-warm);
}
.uv-cd-video-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.uv-cd-video-card-title {
    padding: .6rem .75rem;
    font-size: var(--uv-fs-caption);
    font-weight: 600;
    line-height: 1.35;
}

/* Press releases */
.uv-cd-press-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--uv-border-light);
}
.uv-cd-press-item:last-child { border-bottom: none; }
.uv-cd-press-item-thumb {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--uv-bg-warm);
}
.uv-cd-press-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.uv-cd-press-item-body { flex: 1; }
.uv-cd-press-item-title {
    font-size: var(--uv-fs-body);
    font-weight: 600;
    color:var(--uv-text-dark);
    text-decoration: none;
    margin-bottom: .35rem;
    display: block;
    line-height: 1.35;
}
.uv-cd-press-item-title:hover { color: var(--uv-primary); }
.uv-cd-press-item-meta {
    display: flex;
    gap: .75rem;
    font-size: var(--uv-fs-micro);
    color: var(--uv-text-hint);
    margin-bottom: .35rem;
}
.uv-cd-press-item-meta i { margin-right: .15rem; }
.uv-cd-press-item-excerpt {
    font-size: var(--uv-fs-caption);
    color: var(--uv-color-dim);
    line-height: 1.5;
}

/* Showcase */
.uv-cd-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .5rem;
}
.uv-cd-showcase-card {
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    padding: .5rem;
    text-align: center;
    transition: all .2s;
}
.uv-cd-showcase-card:hover {
    border-color: var(--uv-primary);
    box-shadow: 0 2px 12px rgba(13,110,253,.1);
}
.uv-cd-showcase-card img {
    border-radius: 6px;
    margin-bottom: .35rem;
}
.uv-cd-showcase-label {
    font-size: var(--uv-fs-micro);
    color: var(--uv-text-muted);
    line-height: 1.3;
}

/* EGR Statement */
.uv-cd-egr { font-size: var(--uv-fs-caption); color: var(--uv-text-dark); line-height: 1.7; }
.uv-cd-egr strong { color:var(--uv-text-dark); }
.uv-cd-egr table {
    width: 100%;
    border-collapse: collapse;
    margin-top: .75rem;
    font-size: var(--uv-fs-caption);
}
.uv-cd-egr table th {
    background: var(--uv-bg-warm);
    font-weight: 600;
    color: var(--uv-text-muted);
    text-transform: uppercase;
    font-size: var(--uv-fs-micro);
    letter-spacing: .04em;
    padding: .5rem .75rem;
    text-align: left;
    border-bottom: 2px solid var(--uv-border);
}
.uv-cd-egr table td {
    padding: .45rem .75rem;
    border-bottom: 1px solid var(--uv-border-light);
    color: var(--uv-color-dim);
}
.uv-cd-egr table tr:hover td { background: #fdfcfa; }

/* ── Share ── */
.uv-cd-share {
    padding: .75rem 0;
    border-top: 1px solid var(--uv-border-light);
    margin-bottom: 1rem;
}

/* ── Review form ── */
.uv-cd-review-form {
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 1.25rem;
    background: #fdfcfa;
    margin-bottom: 1.25rem;
}
.uv-cd-review-form-hint {
    font-size: var(--uv-fs-xs);
    color: var(--uv-text-muted);
    font-style: italic;
    margin-bottom: .75rem;
}

/* Info message */
.uv-cd-info-msg {
    display: flex;
    gap: .75rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--uv-bg-warm);
    border: 1px solid var(--uv-border);
    font-size: var(--uv-fs-caption);
    color: var(--uv-color-dim);
    margin-bottom: 1rem;
}
.uv-cd-info-msg i { color: var(--uv-primary); font-size: var(--uv-fs-h4); flex-shrink: 0; margin-top: .1rem; }
.uv-cd-info-msg a { color: var(--uv-primary); font-weight: 600; }

/* ── Reviews ── */
.uv-cd-reviews-header {
    font-size: var(--uv-fs-h4);
    font-weight: 700;
    color:var(--uv-text-dark);
    margin-bottom: .75rem;
    padding-top: .75rem;
    border-top: 1px solid var(--uv-border-light);
}
.uv-cd-reviews-summary {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: var(--uv-fs-caption);
    color: var(--uv-text-muted);
    margin-bottom: 1rem;
}
.uv-cd-review-card {
    border: 1px solid #e8e4dc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: .75rem;
    background: #fff;
}
.uv-cd-review-card-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
}
.uv-cd-review-card-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.uv-cd-review-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.uv-cd-review-card-author {
    font-size: var(--uv-fs-caption);
    font-weight: 600;
    color:var(--uv-text-dark);
    text-decoration: none;
}
.uv-cd-review-card-author:hover { color: var(--uv-primary); }
.uv-cd-review-card-text {
    font-size: var(--uv-fs-small);
    color: var(--uv-text-dark);
    line-height: 1.6;
    margin: .35rem 0;
}
.uv-cd-review-card-edit {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: var(--uv-fs-micro);
    color: var(--uv-text-muted);
    text-decoration: none;
    padding: .2rem .6rem;
    border: 1px solid #e8e4dc;
    border-radius: 6px;
    transition: all .2s;
}
.uv-cd-review-card-edit:hover { border-color: var(--uv-primary); color: var(--uv-primary); }

/* ── Sidebar ── */
.uv-cd-sidebar-btn {
    display: block;
    width: 100%;
    padding: .65rem 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--uv-primary), var(--uv-primary-dark));
    color: #fff;
    font-size: var(--uv-fs-caption);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all .25s;
    margin-bottom: 1.25rem;
}
.uv-cd-sidebar-btn:hover {
    background: linear-gradient(135deg, var(--uv-primary-dark), var(--uv-primary-hover));
    color: #fff;
    box-shadow: 0 4px 16px rgba(13,110,253,.3);
    transform: translateY(-2px);
    text-decoration: none;
}
.uv-cd-sidebar-btn i { margin-right: .3rem; }

.uv-cd-related {
    border-radius: 12px;
    background: linear-gradient(135deg, var(--uv-bg-warm), var(--uv-bg-warm));
    border: 1px solid var(--uv-border);
    padding: 1.15rem;
    margin-bottom: 1.25rem;
}
.uv-cd-related-header {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-bottom: .75rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--uv-border);
}
.uv-cd-related-title {
    font-size: var(--uv-fs-xs);
    font-weight: 700;
    color:var(--uv-text-dark);
}
.uv-cd-related-stars {
    margin-left: auto;
    color: var(--uv-primary);
    font-size: var(--uv-fs-micro);
    letter-spacing: 1px;
}
.uv-cd-related-list { list-style: none; padding: 0; margin: 0; }
.uv-cd-related-item {
    padding: .35rem 0;
    border-bottom: 1px solid rgba(13,110,253,.1);
}
.uv-cd-related-item:last-child { border-bottom: none; }
.uv-cd-related-item a {
    font-size: var(--uv-fs-caption);
    font-weight: 500;
    color:var(--uv-text-dark);
    text-decoration: none;
    transition: color .15s;
    line-height: 1.4;
}
.uv-cd-related-item a:hover { color: var(--uv-primary); }
.uv-cd-related-item a::before {
    content: '\25C6';
    color: var(--uv-primary);
    margin-right: .4rem;
    font-size: var(--uv-fs-micro);
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 767.98px) {
    .uv-cd-hero { flex-direction: row; align-items: flex-start; padding: 1rem; gap: 1rem; }
    .uv-cd-avatar-wrap { width: 80px; flex-shrink: 0; }
    .uv-cd-logo { max-width: 80px; }
    .uv-cd-avatar { width: 80px; height: 80px; }
    .uv-cd-info { flex: 1; min-width: 0; }
    .uv-cd-info h1 { font-size: 1.1rem; margin-bottom: .3rem; }
    .uv-cd-subtitle { flex-wrap: wrap; }
    .uv-cd-contacts { grid-template-columns: 1fr; }
    .uv-cd-press-item { flex-direction: column; }
    .uv-cd-press-item-thumb { width: 100%; height: 180px; }
    .uv-cd-gallery { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
}

.uv-hidden { display: none; }
.uv-cd-map-dialog { min-width: 50vw; height: 50vh; }
.uv-cd-tags-footer { margin-top: .6rem; padding-top: .5rem; border-top: 1px solid var(--uv-border); }
.uv-cd-tags-secondary { opacity: .75; margin-bottom: .25rem; flex-wrap: wrap; }
.uv-cd-tags-secondary .uv-cd-tags-label { font-size: .72rem; flex-shrink: 0; }
.uv-cd-tags-secondary .uv-cd-tag { font-size: .72rem; padding: 0; background: none; border-radius: 0; overflow-wrap: break-word; word-break: break-word; }
.uv-cd-tags-secondary .uv-cd-tag + .uv-cd-tag::before { content: ", "; color: var(--uv-text-muted); }
        
