* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: #1f2933;
    background: #f3f5f7;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: #000;
}
a:hover {
    color: #0000ff;
}

.site-header {
    width: 100%;
    padding: 0;
    color: #fff;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: left;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    width: min(1200px, calc(100% - 24px));
    min-height: 66px;
    margin: 0 auto;
}

.site-tagline {
    margin: 0;
    padding: 0 12px 8px;
    color: #ff0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.3;
    text-align: center;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo img {
    display: block;
    width: 58px;
    height: 54px;
    object-fit: contain;
}

nav.menu {
    width: auto;
    background: #000;
}

nav.menu ul.menu-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    margin: 0;
    color: #ff0;
    list-style: none;
}

nav.menu ul.menu-horizontal li {
    position: relative;
    margin: 0 5px;
}

nav.menu ul.menu-horizontal li a,
.dropbtn {
    display: inline-block;
    padding: 9px 12px;
    border: 0;
    color: #fff;
    background: #000;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}

nav.menu ul.menu-horizontal li a:hover,
.dropbtn:hover {
    color: #ff0;
    text-decoration: underline;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 190px;
    flex-direction: column;
    border: 1px solid #ff0;
    background: #000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 2000;
}

.dropdown-content a {
    display: block;
    padding: 9px 10px;
    color: #fff;
    font-size: 13px;
    text-align: left;
    text-decoration: none;
}

.dropdown-content a:hover {
    color: #ff0;
    background: #333;
}

.dropdown.open .dropdown-content {
    display: block;
}

.menu-toggle-btn {
    display: none;
    padding: 10px;
    border: 1px solid #ff0;
    color: #ff0;
    background: #000;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

.cp-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 28px;
    color: #fff;
    background: #202833;
}

.cp-brand {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.cp-topbar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cp-topbar nav a {
    color: #d8e2ee;
    text-decoration: none;
}

.cp-frame {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    width: min(1200px, calc(100% - 32px));
    margin: 32px auto;
    gap: 24px;
}

.cp-frame-auth {
    grid-template-columns: minmax(0, 1fr);
}

.cp-frame-auth .cp-shell {
    width: 100%;
}

.cp-sidebar {
    align-self: start;
    padding: 4px;
    background: #fff;
    border: 1px solid #dfe5eb;
    border-radius: 8px;
}

.cp-sidebar nav {
    display: grid;
    gap: 2px;
}

.cp-sidebar a {
    display: block;
    padding: 2px;
    border-radius: 6px;
    color: #344252;
    text-decoration: none;
}

.cp-sidebar a:hover {
    background: #eef3f8;
    color: #145ea8;
}

.cp-shell {
    width: min(1040px, calc(100% - 32px));
    margin: 0;
}

.cp-panel {
    padding: 28px;
    background: #fff;
    border: 1px solid #dfe5eb;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(31, 41, 51, 0.06);
}

.public-band-mobile-panel {
    display: none;
}

.public-band-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 12px;
}

.public-band-result-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #dfe5eb;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.public-band-result-image-link {
    display: inline-flex;
}

.public-band-result-image {
    display: block;
    height: 45px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.public-band-result-body {
    display: grid;
    gap: 0.25rem;
    justify-items: center;
}

.public-band-result-name {
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.public-band-result-name:hover {
    text-decoration: underline;
}

.public-band-mobile-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
}

.public-band-mobile-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e7edf3;
}

.public-band-mobile-meta {
    display: grid;
    gap: 0.15rem;
    margin-top: 0.25rem;
    color: #607080;
    font-size: 0.8rem;
    line-height: 1.3;
}

.cp-panel-narrow {
    max-width: 520px;
    margin: 0 auto;
}

.cp-profile-panel {
    max-width: none;
    margin: 0;
}

h1 {
    margin: 0 0 10px;
    color: #17202a;
    font-size: 28px;
}

h2 {
    margin: 0 0 10px;
    color: #17202a;
    font-size: 22px;
}

p {
    line-height: 1.55;
}

.cp-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.cp-field {
    display: grid;
    gap: 7px;
}

.cp-field label {
    color: #344252;
    font-weight: 700;
}

.cp-field-label {
    color: #344252;
    font-weight: 700;
}

.cp-field input {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #b9c4cf;
    border-radius: 6px;
    font-size: 16px;
}

.cp-field textarea {
    width: 100%;
    min-height: 96px;
    padding: 10px 12px;
    border: 1px solid #b9c4cf;
    border-radius: 6px;
    font: inherit;
    font-size: 16px;
    resize: vertical;
}

.cp-field select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #b9c4cf;
    border-radius: 6px;
    background: #fff;
    font-size: 16px;
}

.cp-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.cp-profile-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
}

.cp-profile-type-area {
    min-width: 0;
}

.cp-profile-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
    gap: 16px;
    align-items: start;
    margin-bottom: 12px;
}

.cp-profile-heading {
    margin-bottom: 0;
}

.cp-profile-type-area .cp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
}

.cp-profile-type-area .cp-stat {
    overflow: hidden;
}

.cp-profile-type-area .cp-stat strong {
    max-width: 100%;
    font-size: clamp(8px, 1.1vw, 12px);
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cp-profile-image-form {
    display: grid;
    justify-items: start;
    width: 100%;
    margin: 0;
}

.cp-profile-image-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    align-items: start;
}

.cp-profile-image-upload {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 160px;
    overflow: hidden;
    border: 1px solid #dfe5eb;
    border-radius: 8px;
    background: #f3f6f9;
    cursor: pointer;
}

.cp-profile-image-upload:hover,
.cp-profile-image-upload.is-dragover {
    border-color: #145ea8;
    box-shadow: 0 0 0 3px rgba(20, 94, 168, 0.14);
}

.cp-profile-image-upload img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cp-profile-image-watermark {
    position: absolute;
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    padding: 5px 8px;
    border-radius: 6px;
    color: #fff;
    background: rgba(0, 0, 0, 0.58);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    pointer-events: none;
}

.cp-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.cp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: #145ea8;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.cp-button:hover {
    background: #ffffff;
}

.cp-store-save-button {
    background: #000;
}

.cp-store-save-button:hover {
    background: #222;
}

.cp-button-secondary {
    color: #17202a;
    background: #dfe7ef;
}

.cp-button-secondary:hover {
    background: #c8d6e5;
}

.cp-button-danger {
    background: #a83232;
}

.cp-button-danger:hover {
    background: #872727;
}

.cp-button-small {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 14px;
}

.cp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cp-actions-inline {
    gap: 8px;
}

.cp-actions-inline form {
    margin: 0;
}

.cp-check {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #344252;
    font-weight: 700;
}

.cp-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.cp-tool-check {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #dfe5eb;
    border-radius: 6px;
    background: #fbfcfd;
    color: #344252;
    font-weight: 700;
}

.cp-tool-check input {
    flex: 0 0 auto;
    width: 18px;
    min-height: 18px;
}

.cp-alert {
    margin-bottom: 18px;
    padding: 13px 16px;
    border-radius: 6px;
    border: 1px solid #c8d6e5;
    background: #eaf3ff;
}

.cp-alert-error {
    border-color: #e2a8a8;
    background: #fff0f0;
}

.cp-alert-success {
    border-color: #93c9a5;
    background: #eefaf1;
}

.cp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
}

.cp-grid.cp-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cp-stat {
    color: #ffffff;
    padding: 10px;
    border: 1px solid #dfe5eb;
    border-radius: 8px;
    background: #000;
}

.cp-stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.cp-stat-label-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.cp-stat-label-link:hover {
    color: #ff0;
    text-decoration: underline;
}

.cp-awstats-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 18px 0 0;
}

.cp-awstats-actions .cp-button {
    background: #000;
}

.cp-awstats-actions .cp-button:hover {
    background: #222;
}

.cp-awstats-panel {
    padding: 16px;
}

.cp-awstats-frame {
    display: block;
    width: 100%;
    min-height: 760px;
    margin-top: 12px;
    border: 1px solid #dfe5eb;
    border-radius: 6px;
    background: #fff;
}

.cp-command-output {
    max-height: 220px;
    overflow: auto;
    white-space: pre-wrap;
}

.cp-secondary-link {
    color: #145ea8;
    font-weight: 700;
    text-decoration: none;
}

.cp-secondary-link:hover {
    text-decoration: underline;
}

.cp-stat-edit-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.cp-stat-edit-line strong {
    min-width: 0;
    word-break: break-word;
}

.cp-inline-edit-form {
    margin: 0;
}

.cp-member-edit-form {
    margin-top: 10px;
}

.cp-profile-genre-form {
    display: grid;
    gap: 4px;
    margin-top: 5px;
}

.cp-profile-genre-form-top {
    justify-self: end;
    width: 100%;
    margin-top: 0;
}

.cp-profile-genre-form select {
    width: min(260px, 100%);
    min-height: 36px;
    padding: 7px 9px;
    border: 1px solid #888888;
    border-radius: 6px;
    background: #fff;
    font-size: 1rem;
}

.cp-stat-label {
    display: block;
    color: #000000;
}

.cp-inline-edit-fields {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.cp-inline-edit-fields[hidden] {
    display: none;
}

.cp-inline-edit-fields input {
    width: min(260px, 100%);
    min-height: 36px;
    padding: 7px 9px;
    border: 1px solid #b9c4cf;
    border-radius: 6px;
    font-size: 16px;
}

.cp-pencil-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    color: #145ea8;
    background: #eef5fc;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
}

.cp-pencil-link:hover {
    color: #fff;
    background: #145ea8;
}

.cp-inline-link-button {
    padding: 0;
    border: 0;
    color: #145ea8;
    background: transparent;
    font-size: clamp(8px, 1.1vw, 12px);
    font-weight: 700;
    line-height: 1.25;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
}

.cp-inline-link-button:hover {
    text-decoration: underline;
}

.cp-plus-link,
.cp-minus-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #145ea8;
    background: #eef5fc;
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.cp-minus-link {
    color: #a83232;
    background: #fff0f0;
}

.cp-plus-link:hover,
.cp-minus-link:hover {
    color: #fff;
    background: #145ea8;
}

.cp-minus-link:hover {
    background: #a83232;
}

.cp-module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
}

.cp-module {
    padding: 18px;
    border: 1px solid #dfe5eb;
    border-radius: 8px;
    background: #fbfcfd;
}

.cp-module h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.cp-module p {
    margin: 0 0 14px;
}

.cp-module a {
    font-weight: 700;
    text-decoration: none;
}

.cp-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.cp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
}

.cp-table th,
.cp-table td {
    padding: 12px;
    border-bottom: 1px solid #dfe5eb;
    text-align: left;
    vertical-align: top;
}

.cp-table th {
    color: #344252;
    background: #f3f6f9;
}

.cp-thumb-cell {
    width: 56px;
}

.cp-item-thumb,
.cp-thumb-placeholder {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border: 1px solid #d7e0e8;
    border-radius: 6px;
    background: #eef2f5;
}

.cp-item-thumb {
    object-fit: cover;
}

.cp-thumb-placeholder {
    align-items: center;
    justify-content: center;
    color: #6a7785;
    font-size: 9px;
    line-height: 1.1;
    text-align: center;
}

.cp-radio-toggle-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
}

.cp-radio-toggle-option {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    color: #344252;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.cp-radio-toggle-option input {
    width: auto;
    min-height: 0;
    margin: 0;
}

.cp-store-tabs-panel {
    padding: 16px;
}

.cp-store-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.cp-store-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid #000;
    border-radius: 6px;
    color: #fff;
    background: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.cp-store-tab:hover,
.cp-store-tab.is-active {
    border-color: #000;
    color: #ff0;
    background: #000;
}

.cp-store-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
}

.cp-table-wrap + .cp-store-pagination {
    margin-top: 14px;
}

.cp-store-pagination-status {
    color: #344252;
    font-size: 13px;
    font-weight: 700;
}

.cp-table.public-band-table {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.25;
}

.cp-table.public-band-table th,
.cp-table.public-band-table td {
    padding: 10px;
    font-size: inherit;
}

.cp-table.public-band-table tbody tr:nth-child(odd) {
    background: #eeeeee;
}

.cp-table.public-band-table tbody tr:nth-child(even) {
    background: #ffffff;
}

.cp-user-edit-panel {
    margin-top: 18px;
}

.cp-user-meta {
    display: block;
    margin-top: 4px;
    color: #607080;
    font-size: 13px;
    line-height: 1.35;
    word-break: break-word;
}

.cp-user-name-link {
    color: #145ea8;
    text-decoration: none;
}

.cp-user-name-link:hover {
    text-decoration: underline;
}

.cp-user-action-form {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 220px;
    margin: 0;
}

.cp-table-action-select {
    width: 136px;
    min-height: 34px;
    padding: 6px 8px;
    border: 1px solid #b9c4cf;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
}

.cp-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 18px;
}

.cp-pagination a,
.cp-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid #dfe5eb;
    border-radius: 6px;
    background: #fff;
    color: #344252;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.cp-pagination a:hover,
.cp-pagination-current {
    border-color: #145ea8;
    color: #fff;
    background: #145ea8;
}

.cp-pagination-disabled,
.cp-pagination-gap {
    color: #8a99a8;
    background: #f3f6f9;
}

.cp-status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #344252;
    background: #eef3f8;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.cp-status-active {
    color: #1d6b36;
    background: #eefaf1;
}

.cp-status-suspended,
.cp-status-deleted {
    color: #8a2626;
    background: #fff0f0;
}

.cp-status-pending {
    color: #755300;
    background: #fff7dc;
}

.cp-muted {
    color: #607080;
}

.site-footer {
    width: 100%;
    margin-top: 32px;
    padding: 16px 5%;
    border-top: 2px solid #ff0;
    color: #fff;
    background: #000;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.site-footer-links {
    display: block;
}

.footer-toggle-btn {
    display: none;
    width: calc(100% - 24px);
    margin: 12px auto 0;
    padding: 10px 14px;
    border: 1px solid #ff0;
    color: #fff;
    background: #000;
    font: inherit;
    font-weight: 700;
    text-align: left;
}

.footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.footer-col,
.footer-safety {
    flex: 1;
    min-width: 0;
}

.footer-col h6 {
    margin: 0 0 8px;
    color: #ff0;
    font-size: 15px;
    font-style: italic;
    font-weight: 700;
}

.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-col li {
    margin-bottom: 6px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ff0;
    text-decoration: underline;
}

.footer-safety {
    padding: 8px;
    border-left: 2px solid #ff0;
    color: #fff;
    background: #111;
}

.footer-safety h5 {
    margin: 0 0 10px;
    color: #ff0;
    font-size: 15px;
    font-weight: 700;
}

.footer-safety ol {
    padding-left: 18px;
    margin: 0;
    color: #fff;
}

.footer-safety li {
    margin-bottom: 6px;
}

.footer-safety a {
    color: #fff;
    text-decoration: none;
}

.footer-safety a:hover {
    color: #ff0;
    text-decoration: underline;
}

.footer-bottom {
    width: min(1200px, 100%);
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid #ff0;
    color: #ccc;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 720px) {
    .site-header {
        position: relative;
        top: auto;
    }

    .site-header-inner {
        align-items: stretch;
        justify-content: space-between;
        gap: 12px;
        min-height: 72px;
        padding: 6px 0;
    }

    .site-logo {
        display: none;
    }

    nav.menu {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        justify-content: center;
    }

    .menu-toggle-btn {
        display: block;
    }

    nav.menu ul.menu-horizontal {
        display: none;
        position: absolute;
        top: 72px;
        right: 12px;
        flex-direction: column;
        align-items: stretch;
        width: 190px;
        background: #000;
        border: 1px solid #ff0;
        z-index: 3000;
    }

    nav.menu ul.menu-horizontal.open {
        display: flex;
    }

    nav.menu ul.menu-horizontal li {
        width: 100%;
        margin: 0;
    }

    nav.menu ul.menu-horizontal li a,
    nav.menu ul.menu-horizontal li .dropbtn {
        width: 100%;
        text-align: left;
    }

    nav.menu ul.menu-horizontal li a:hover,
    nav.menu ul.menu-horizontal li .dropbtn:hover {
        color: #ff0;
        text-decoration: underline;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        border-right: 0;
        border-left: 0;
        box-shadow: none;
    }

    .footer-toggle-btn {
        display: block;
    }

    .site-footer-links {
        display: none;
    }

    .site-footer-links.open {
        display: block;
    }

    .footer-grid {
        flex-direction: column;
    }

    .footer-col,
    .footer-safety {
        width: 100%;
    }

.public-band-mobile-panel {
    display: block;
}

    .cp-table-wrap,
    .public-band-table {
        display: none;
    }

    .public-band-results-grid {
        grid-template-columns: 1fr;
    }

    .public-band-mobile-item {
        font-size: 0.84rem;
    }

    .public-band-mobile-meta {
        font-size: 0.74rem;
    }

    .cp-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .cp-grid {
        grid-template-columns: 1fr;
    }

    .cp-grid.cp-grid-four {
        grid-template-columns: 1fr;
    }

    .cp-module-grid {
        grid-template-columns: 1fr;
    }

    .cp-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .cp-profile-top {
        grid-template-columns: 1fr;
    }

    .cp-profile-heading-row {
        grid-template-columns: 1fr;
    }

    .cp-profile-genre-form-top {
        justify-self: stretch;
    }

    .cp-profile-type-area .cp-grid {
        grid-template-columns: 1fr;
    }

    .cp-profile-image-row {
        grid-template-columns: 1fr;
    }

    .cp-profile-image-upload {
        width: min(220px, 100%);
        margin: 0;
    }

    .cp-frame {
        grid-template-columns: 1fr;
    }

    .cp-sidebar {
        display: none;
    }

    .footer-grid {
        flex-direction: column;
        gap: 24px;
    }

    .footer-col,
    .footer-safety {
        width: 100%;
    }
}
