.publico-v2-page {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at top, rgba(126, 83, 124, 0.24), transparent 34%),
        radial-gradient(circle at 85% 10%, rgba(90, 120, 138, 0.16), transparent 24%),
        linear-gradient(180deg, #020202 0%, #0a0a0d 52%, #111116 100%);
    color: #e9dde3;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

.publico-v2-page * {
    box-sizing: border-box;
}

[v-cloak] {
    display: none;
}

.publico-v2-shell {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 16px 32px;
}

.publico-v2-hero {
    margin-bottom: 18px;
    padding: 8px 0 6px;
}

.publico-v2-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
}

.publico-v2-brand img {
    width: 224px;
    max-width: 100%;
    height: auto;
}

.publico-v2-top-sections {
    display: block;
}

.publico-v2-flash {
    margin-bottom: 18px;
}

.publico-v2-flash .alert {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

.publico-v2-back-row {
    margin-bottom: 16px;
}

.publico-v2-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d9b3c7;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.publico-v2-back-link:hover,
.publico-v2-back-link:focus {
    color: #f1d4e2;
    text-decoration: none;
}

.publico-v2-section {
    margin-bottom: 24px;
}

.publico-v2-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.publico-v2-section-title {
    margin: 0;
    color: #f1e4ea;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    line-height: 1.15;
}

.publico-v2-section-copy {
    margin: 6px 0 0;
    color: #b9a7b0;
    font-size: 14px;
    line-height: 1.45;
}

.publico-v2-pill {
    flex-shrink: 0;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.publico-v2-pill--live {
    background: #2d413c;
    color: #c9e0d6;
}

.publico-v2-pill--open {
    background: #313d49;
    color: #d2deea;
}

.publico-v2-pill--soon {
    background: #463945;
    color: #e4cedd;
}

.publico-v2-pill--past {
    background: #393744;
    color: #d4cde5;
}

.publico-v2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.publico-v2-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(221, 197, 209, 0.14);
    border-radius: 20px;
    background: rgba(20, 20, 26, 0.92);
    color: inherit;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.publico-v2-card:hover,
.publico-v2-card:focus {
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
    border-color: rgba(232, 208, 219, 0.22);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.42);
}

.publico-v2-card--button {
    width: 100%;
    padding: 0;
    text-align: left;
    cursor: pointer;
}

.publico-v2-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    width: 100%;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.publico-v2-card-badge--live {
    background: #30443f;
    color: #d4e8dd;
    animation: publicov2-live-badge 1.8s ease-in-out infinite;
}

.publico-v2-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: 0 0 10px;
    background: #8df0a8;
    box-shadow: 0 0 0 rgba(141, 240, 168, 0.55);
    animation: publicov2-live-dot 1.3s ease-out infinite;
}

.publico-v2-card-badge--open {
    background: #33414d;
    color: #dce6f0;
}

.publico-v2-card-badge--soon {
    background: #4a3c49;
    color: #ead7e3;
}

.publico-v2-card-badge--past {
    background: #3b3947;
    color: #ddd6ef;
}

.publico-v2-card-image-wrap {
    aspect-ratio: 16 / 10;
    background: #1e1d24;
}

.publico-v2-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.publico-v2-card-body {
    padding: 16px 16px 18px;
}

.publico-v2-card-title {
    margin: 0 0 8px;
    color: #f4e7ed;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.25;
}

.publico-v2-card-meta {
    margin: 0 0 14px;
    color: #bba9b4;
    font-size: 14px;
    line-height: 1.5;
}

.publico-v2-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d9b3c7;
    font-size: 14px;
    font-weight: 700;
}

.publico-v2-empty {
    padding: 20px 18px;
    border: 1px dashed rgba(228, 208, 219, 0.18);
    border-radius: 18px;
    background: rgba(22, 22, 28, 0.78);
    color: #b9a7b0;
    font-size: 14px;
    line-height: 1.5;
}

.publico-v2-footer {
    padding: 18px 0 8px;
    color: #8f8590;
    font-size: 13px;
    text-align: center;
}

.publico-v2-detail-card,
.publico-v2-form-card,
.publico-v2-athlete-card,
.publico-v2-success-card {
    border: 1px solid rgba(221, 197, 209, 0.14);
    border-radius: 22px;
    background: rgba(20, 20, 26, 0.92);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.publico-v2-detail-card {
    padding: 18px;
    margin-bottom: 22px;
}

.publico-v2-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.publico-v2-detail-media {
    width: 100%;
}

.publico-v2-detail-image {
    display: block;
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    background: #1e1d24;
}

.publico-v2-section-header--detail {
    margin-bottom: 12px;
}

.publico-v2-section-title--detail {
    font-size: 30px;
    line-height: 1.08;
}

.publico-v2-richtext {
    color: #d8cbd2;
    font-size: 15px;
    line-height: 1.65;
}

.publico-v2-richtext p:last-child {
    margin-bottom: 0;
}

.publico-v2-richtext a {
    color: #e4bfd2;
}

.publico-v2-price-chip {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #30443f;
    color: #d7eadf;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.publico-v2-action-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.publico-v2-status-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.publico-v2-status-banner--muted {
    background: #423741;
    color: #ead7e3;
}

.publico-v2-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    border: 0;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.publico-v2-button:hover,
.publico-v2-button:focus {
    text-decoration: none;
    transform: translateY(-1px);
}

.publico-v2-button--primary {
    background: #b882a4;
    color: #180f17;
    box-shadow: 0 16px 30px rgba(184, 130, 164, 0.2);
}

.publico-v2-button--primary:hover,
.publico-v2-button--primary:focus {
    color: #180f17;
    background: #c691b1;
}

.publico-v2-button--ghost {
    background: #2c3441;
    color: #dce5ef;
}

.publico-v2-button--ghost:hover,
.publico-v2-button--ghost:focus {
    color: #edf5ff;
    background: #364050;
}

.publico-v2-button--live {
    background: #2f453e;
    color: #d7efe4;
    box-shadow: 0 16px 30px rgba(47, 69, 62, 0.2);
}

.publico-v2-button--live:hover,
.publico-v2-button--live:focus {
    color: #ebfff6;
    background: #395248;
}

.publico-v2-form-section {
    margin-bottom: 22px;
}

.publico-v2-success-layout {
    max-width: 760px;
    margin: 0 auto;
}

.publico-v2-success-card {
    padding: 22px 18px;
}

.publico-v2-success-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

.publico-v2-success-media {
    width: 100%;
}

.publico-v2-success-image {
    display: block;
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    background: #1e1d24;
}

.publico-v2-section-header--success {
    justify-content: flex-start;
    margin-bottom: 18px;
    text-align: left;
}

.publico-v2-success-status {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.publico-v2-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin: 0;
    border-radius: 50%;
    background: #30443f;
    color: #d7eadf;
    font-size: 28px;
    box-shadow: 0 16px 30px rgba(47, 69, 62, 0.22);
}

.publico-v2-success-headline {
    margin-bottom: 0;
    color: #d7eadf;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.publico-v2-success-block,
.publico-v2-success-code,
.publico-v2-success-note {
    padding: 14px 16px;
    border: 1px solid rgba(221, 197, 209, 0.14);
    border-radius: 16px;
    background: rgba(12, 12, 17, 0.82);
}

.publico-v2-success-block,
.publico-v2-success-code {
    margin-bottom: 14px;
}

.publico-v2-success-label {
    display: block;
    margin-bottom: 6px;
    color: #bba9b4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.publico-v2-success-value {
    color: #f4e7ed;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.25;
}

.publico-v2-success-copy {
    margin-bottom: 14px;
}

.publico-v2-success-code strong {
    display: block;
    color: #f4e7ed;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    word-break: break-word;
}

.publico-v2-success-note {
    color: #d8cbd2;
    font-size: 15px;
    line-height: 1.55;
}

.publico-v2-form-card {
    padding: 18px;
    margin-bottom: 18px;
}

.publico-v2-form-card--compact {
    margin-bottom: 0;
}

.publico-v2-error-summary,
.publico-v2-inline-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(214, 141, 160, 0.28);
    border-radius: 16px;
    background: rgba(66, 34, 43, 0.9);
    color: #f3d2db;
}

.publico-v2-info-chip {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(205, 187, 221, 0.22);
    border-radius: 14px;
    background: rgba(60, 49, 71, 0.82);
    color: #eadcf3;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.publico-v2-info-chip--inline {
    margin-bottom: 0;
    padding: 6px 10px;
    font-size: 12px;
}

.publico-v2-error-summary-title {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
}

.publico-v2-error-summary-list {
    margin: 0;
    padding-left: 18px;
}

.publico-v2-error-summary-list li + li {
    margin-top: 4px;
}

.publico-v2-form-group {
    margin-bottom: 16px;
}

.publico-v2-form-group label {
    display: block;
    margin-bottom: 6px;
    color: #f1e4ea;
    font-size: 14px;
    font-weight: 700;
}

.publico-v2-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.publico-v2-label-row label {
    margin-bottom: 0;
}

.publico-v2-input {
    min-height: 48px;
    border: 1px solid rgba(221, 197, 209, 0.16);
    border-radius: 14px;
    background: rgba(10, 10, 14, 0.84);
    color: #f3e8ee;
    box-shadow: none;
}

.publico-v2-input:focus {
    border-color: rgba(215, 173, 198, 0.52);
    box-shadow: 0 0 0 2px rgba(215, 173, 198, 0.12);
}

.publico-v2-input[disabled] {
    cursor: not-allowed;
    opacity: 0.7;
}

.publico-v2-input option {
    color: #111116;
}

.publico-v2-form-group .select2-container {
    width: 100% !important;
}

.publico-v2-form-group .select2-container--default .select2-selection--single {
    height: 48px;
    border: 1px solid rgba(221, 197, 209, 0.16);
    border-radius: 14px;
    background: #f3e8ee !important;
}

.publico-v2-form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 14px;
    padding-right: 40px;
    color: #111116 !important;
    line-height: 46px;
}

.publico-v2-form-group .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #4f4b55 !important;
}

.publico-v2-form-group .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    right: 10px;
}

.publico-v2-form-group .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #d7adc6 transparent transparent transparent;
}

.publico-v2-form-group .select2-container--default.select2-container--open .select2-selection--single {
    border-color: rgba(215, 173, 198, 0.52);
    box-shadow: 0 0 0 2px rgba(215, 173, 198, 0.12);
}

body.publico-v2-page .select2-dropdown {
    border: 1px solid rgba(221, 197, 209, 0.16);
    border-radius: 14px;
    background: #121219;
    overflow: hidden;
}

body.publico-v2-page .select2-search--dropdown {
    padding: 10px;
    background: #121219;
}

body.publico-v2-page .select2-search--dropdown .select2-search__field {
    height: 42px;
    border: 1px solid rgba(221, 197, 209, 0.16);
    border-radius: 12px;
    background: #f3e8ee !important;
    color: #111116 !important;
    padding: 10px 12px;
}

body.publico-v2-page .select2-results__option {
    padding: 10px 14px;
    color: #111116 !important;
    background: #f3e8ee !important;
    font-weight: 400 !important;
}

body.publico-v2-page .select2-container--default .select2-results__option[aria-selected=true] {
    background: #e5d6dd !important;
    color: #111116 !important;
}

body.publico-v2-page .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #cfa3bb !important;
    color: #111116 !important;
}

.publico-v2-field-error {
    margin-top: 6px;
    color: #f4b8c7;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.publico-v2-box-manual-wrap {
    margin-top: 12px;
}

.publico-v2-selection-alert {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #473c29;
    color: #f1dfaa;
    font-size: 14px;
    font-weight: 700;
}

.publico-v2-athlete-card {
    padding: 18px;
    margin-bottom: 18px;
}

.publico-v2-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 12px;
}

.publico-v2-athlete-title {
    margin-bottom: 16px;
    color: #f4e7ed;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.2;
}

.publico-v2-athlete-title span {
    display: block;
    margin-top: 4px;
    color: #bba9b4;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.publico-v2-form-note,
.publico-v2-field-caption {
    color: #a99aa3;
    font-size: 12px;
    line-height: 1.45;
}

.publico-v2-form-note {
    margin-top: 6px;
}

.publico-v2-field-caption {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

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

.publico-v2-form-actions {
    margin-top: 4px;
}

.publico-v2-button--disabled,
.publico-v2-button[disabled] {
    transform: none;
    cursor: not-allowed;
    opacity: 0.72;
}

.publico-v2-button[disabled]:hover,
.publico-v2-button[disabled]:focus {
    transform: none;
}

.publico-v2-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0 18px;
    color: #d9b3c7;
}

.publico-v2-results-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.publico-v2-results-note {
    margin-bottom: 14px;
    color: #cbb8c1;
    font-size: 13px;
    line-height: 1.45;
}

.publico-v2-result-card {
    border: 1px solid rgba(221, 197, 209, 0.14);
    border-radius: 20px;
    background: rgba(20, 20, 26, 0.92);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.publico-v2-result-summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    list-style: none;
}

.publico-v2-result-summary::-webkit-details-marker {
    display: none;
}

.publico-v2-result-position {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #6d4b56;
    color: #fff6fb;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.publico-v2-result-position--first {
    background: #b18a35;
}

.publico-v2-result-position--second {
    background: #8d9099;
}

.publico-v2-result-position--third {
    background: #a7673d;
}

.publico-v2-result-main {
    min-width: 0;
}

.publico-v2-result-title {
    color: #f4e7ed;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.3;
}

.publico-v2-result-meta,
.publico-v2-result-submeta {
    margin-top: 4px;
    color: #b9a7b0;
    font-size: 13px;
    line-height: 1.45;
}

.publico-v2-result-total {
    text-align: right;
    white-space: nowrap;
}

.publico-v2-result-total-label {
    display: block;
    color: #b9a7b0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.publico-v2-result-total strong {
    color: #f4e7ed;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.1;
}

.publico-v2-result-chevron {
    color: #d9b3c7;
    font-size: 18px;
}

.publico-v2-result-card[open] .publico-v2-result-chevron i {
    transform: rotate(180deg);
}

.publico-v2-result-chevron i {
    transition: transform 0.16s ease;
}

.publico-v2-result-details {
    padding: 0 16px 16px;
    border-top: 1px solid rgba(221, 197, 209, 0.1);
    background: rgba(12, 12, 17, 0.64);
}

.publico-v2-result-table-wrap {
    overflow-x: auto;
}

.publico-v2-result-table {
    width: 100%;
    border-collapse: collapse;
}

.publico-v2-result-table thead {
    display: none;
}

.publico-v2-result-table th,
.publico-v2-result-table td {
    padding: 12px 10px;
    color: #eadde4;
    font-size: 13px;
    line-height: 1.45;
    vertical-align: top;
}

.publico-v2-result-table th {
    color: #f4e7ed;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.publico-v2-result-table tbody {
    display: block;
}

.publico-v2-result-row {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) repeat(3, minmax(110px, 0.7fr));
    gap: 10px;
    align-items: start;
    margin-bottom: 10px;
    padding: 12px;
    border: 1px solid rgba(221, 197, 209, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.publico-v2-result-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.publico-v2-result-cell-event {
    min-width: 200px;
}

.publico-v2-result-cell-value {
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.publico-v2-result-cell-value:before {
    content: attr(data-label);
    color: #a99aa3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

.publico-v2-result-event-name {
    color: #f4e7ed;
    font-weight: 700;
    line-height: 1.4;
}

.publico-v2-result-event-note {
    margin-top: 4px;
    color: #a99aa3;
    font-size: 12px;
    line-height: 1.45;
    white-space: normal;
}

.publico-v2-result-mobile-line {
    display: none;
}

.publico-v2-result-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.publico-v2-result-pill--result {
    background: rgba(78, 63, 90, 0.72);
    color: #eadcf3;
}

.publico-v2-result-pill--position {
    background: rgba(61, 76, 95, 0.72);
    color: #dce6f0;
}

.publico-v2-result-pill--score {
    background: rgba(53, 79, 69, 0.78);
    color: #d7ecd9;
}

.publico-v2-result-muted {
    color: #8f858d;
    font-weight: 700;
}

@media (min-width: 576px) {
    .publico-v2-shell {
        padding: 24px 22px 36px;
    }

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

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

@media (min-width: 768px) {
    .publico-v2-shell {
        padding: 32px 28px 42px;
    }

    .publico-v2-brand img {
        width: 252px;
    }

    .publico-v2-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .publico-v2-detail-card,
    .publico-v2-form-card,
    .publico-v2-athlete-card {
        padding: 22px;
    }

    .publico-v2-detail-grid {
        grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
        gap: 24px;
        align-items: start;
    }

    .publico-v2-success-grid {
        grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
        gap: 24px;
    }

    .publico-v2-section-title--detail {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .publico-v2-result-summary {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .publico-v2-result-total {
        grid-column: 2 / 3;
        text-align: left;
    }

    .publico-v2-result-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
        padding: 10px 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        border-bottom: 1px solid rgba(221, 197, 209, 0.08);
    }

    .publico-v2-result-cell-event {
        min-width: 0;
        padding-bottom: 0;
        border-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .publico-v2-result-cell-value {
        white-space: normal;
        display: none;
    }

    .publico-v2-result-event-note {
        display: none;
    }

    .publico-v2-result-mobile-line {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        margin-top: 6px;
    }

    .publico-v2-result-mobile-line strong {
        color: #f4e7ed;
        font-size: 13px;
        line-height: 1.35;
    }

    .publico-v2-result-pill {
        min-height: 24px;
        padding: 4px 8px;
        font-size: 11px;
    }

    .publico-v2-result-details {
        padding: 0 14px 12px;
    }

    .publico-v2-result-table tbody tr:hover {
        background: transparent;
    }
}

@media (min-width: 992px) {
    .publico-v2-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .publico-v2-top-sections--compact {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        align-items: start;
    }

    .publico-v2-top-sections--compact .publico-v2-section {
        margin-bottom: 24px;
    }

    .publico-v2-grid--compact-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@keyframes publicov2-live-dot {
    0% {
        transform: scale(0.9);
        opacity: 0.85;
        box-shadow: 0 0 0 0 rgba(141, 240, 168, 0.5);
    }

    70% {
        transform: scale(1.15);
        opacity: 1;
        box-shadow: 0 0 0 8px rgba(141, 240, 168, 0);
    }

    100% {
        transform: scale(0.95);
        opacity: 0.9;
        box-shadow: 0 0 0 0 rgba(141, 240, 168, 0);
    }
}

@keyframes publicov2-live-badge {
    0%, 100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.12);
    }
}
