.public-explore {
    padding-bottom: 48px;
}

.public-explore__live {
    margin-bottom: 24px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(255, 196, 0, 0.45);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 249, 230, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
    box-shadow: 0 10px 28px rgba(11, 27, 50, 0.06);
}

.public-explore__live-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.public-explore__live-title {
    margin: 0 0 4px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--achocup-navy);
}

.public-explore__live-lead {
    margin: 0;
    color: rgba(11, 27, 50, 0.68);
}

.public-explore__live-link {
    flex-shrink: 0;
    font-weight: 700;
    color: var(--achocup-navy);
    text-decoration: none;
    white-space: nowrap;
}

.public-explore__live-link:hover {
    color: #c99700;
}

.public-explore__live .public-live-list {
    margin-top: 0;
}

.public-explore__nav {
    margin-bottom: 24px;
    padding: 16px 18px;
    border: 1px solid #d9e2ec;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
}

.public-explore__nav-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: flex-end;
}

.public-explore__nav-filters {
    flex: 1 1 520px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 16px;
}

.public-explore__nav-actions {
    flex: 0 0 auto;
}

.public-explore__reset {
    border: 1px solid #d9e2ec;
    border-radius: 10px;
    background: #fff;
    padding: 10px 16px;
    color: var(--achocup-navy);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.public-explore__reset:hover:not(:disabled) {
    border-color: #b8c9dc;
    box-shadow: 0 4px 12px rgba(11, 27, 50, 0.06);
}

.public-explore__reset:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.public-explore__nav-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.public-explore__nav-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(11, 27, 50, 0.55);
}

.public-explore__status {
    margin-bottom: 16px;
}

.public-explore__loading {
    margin: 0;
    color: rgba(11, 27, 50, 0.65);
}

.public-explore__head {
    margin-bottom: 20px;
}

.public-explore__head h2 {
    margin: 0 0 8px;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    letter-spacing: 0.04em;
    color: var(--achocup-navy);
}

.public-explore__head--competition .public-explore__eyebrow {
    margin: 0 0 6px;
    color: rgba(11, 27, 50, 0.65);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.public-explore__meta-line {
    margin: 0;
    color: rgba(11, 27, 50, 0.72);
}

.public-explore__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.public-explore-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding: 18px 18px 16px;
    border: 1px solid #d9e2ec;
    border-left: 4px solid var(--achocup-yellow);
    border-radius: 14px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.public-explore-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(11, 27, 50, 0.08);
    border-color: #c5d3e3;
}

.public-explore-card__title {
    font-size: 1.08rem;
    color: var(--achocup-navy);
}

.public-explore-card__meta {
    color: rgba(11, 27, 50, 0.68);
    font-size: 0.92rem;
    line-height: 1.45;
}

.public-explore-card__cta {
    margin-top: auto;
    color: var(--achocup-navy);
    font-weight: 700;
    font-size: 0.92rem;
}

.public-explore__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.public-explore__tab {
    border: 1px solid #d9e2ec;
    border-radius: 999px;
    background: #fff;
    padding: 10px 18px;
    color: var(--achocup-navy);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.public-explore__tab.is-active {
    background: var(--achocup-navy);
    border-color: var(--achocup-navy);
    color: #fff;
}

.public-explore__tab:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.public-explore__filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 16px;
}

.public-explore__filter {
    font-weight: 600;
    color: var(--achocup-navy);
}

.public-explore__select {
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid #d9e2ec;
    border-radius: 10px;
    background: #fff;
    font: inherit;
    color: var(--achocup-navy);
    cursor: pointer;
}

.public-explore__section {
    margin-top: 8px;
}

.public-explore__subheading {
    margin: 28px 0 12px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: var(--achocup-navy);
}

.public-explore__empty {
    margin: 0;
    padding: 24px;
    border: 1px dashed #d9e2ec;
    border-radius: 14px;
    color: rgba(11, 27, 50, 0.68);
    background: rgba(255, 255, 255, 0.7);
}

.public-explore__placeholder {
    padding: 32px 24px;
    border: 1px dashed #d9e2ec;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.public-explore__placeholder p {
    margin: 0;
    color: rgba(11, 27, 50, 0.68);
    font-size: 1.02rem;
}

.public-explore__actions {
    white-space: nowrap;
    width: 1%;
}

.public-explore__matches-table .public-explore__actions,
.public-explore__matches-table td.public-table__action {
    min-width: 0;
    width: 1%;
}

.public-explore__matches-table th:last-child,
.public-explore__matches-table td:last-child {
    text-align: center;
}

@media (max-width: 900px) {
    .public-explore__nav-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-explore__nav-actions {
        flex-basis: 100%;
    }

    .public-explore__reset {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .public-explore__nav {
        padding: 14px;
    }

    .public-explore__nav-filters {
        grid-template-columns: 1fr;
    }

    .public-explore__live-head {
        flex-direction: column;
        align-items: stretch;
    }
}
