.tap2-application {
    --tap2-black: #1d1d1d;
    --tap2-gold: #9a6a08;
    --tap2-yellow: #f2c94c;
    --tap2-paper: #fff;
    --tap2-border: #d8d2c7;
    box-sizing: border-box;
    width: min(100%, 920px);
    margin: 32px auto;
    padding: 0;
    color: var(--tap2-black);
    background: var(--tap2-paper);
    border: 1px solid var(--tap2-border);
    font-family: Arial, sans-serif;
}

.tap2-application *,
.tap2-application *::before,
.tap2-application *::after {
    box-sizing: inherit;
}

.tap2-application > header {
    padding: 32px 36px;
    color: #fff;
    background: var(--tap2-black);
}

.tap2-application > header span {
    color: var(--tap2-yellow);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tap2-application > header h1 {
    margin: 8px 0;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0;
}

.tap2-application > header p {
    margin: 0;
    color: #f0eee9;
}

.tap2-application form {
    padding: 32px 36px 36px;
}

.tap2-application-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.tap2-application-field {
    display: grid;
    gap: 7px;
    min-width: 0;
    font-weight: 700;
}

.tap2-application-field.is-wide {
    grid-column: 1 / -1;
}

.tap2-application-field input,
.tap2-application-field textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--tap2-black);
    background: #fff;
    border: 1px solid #a8a39a;
    border-radius: 2px;
    font: inherit;
    font-weight: 400;
}

.tap2-application-field input:focus,
.tap2-application-field textarea:focus {
    border-color: var(--tap2-gold);
    outline: 2px solid rgba(154, 106, 8, 0.2);
    outline-offset: 1px;
}

.tap2-application-field small {
    color: #5f5a52;
    font-size: 13px;
    font-weight: 400;
}

.tap2-application button {
    min-height: 44px;
    margin-top: 24px;
    padding: 10px 20px;
    color: #161616;
    background: var(--tap2-yellow);
    border: 1px solid #bd8f18;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
}

.tap2-application-message {
    margin: 24px 36px 0;
    padding: 14px 16px;
    border-left: 4px solid;
}

.tap2-application-message.is-success {
    background: #edf7ee;
    border-color: #267a35;
}

.tap2-application-message.is-error {
    background: #fff0f0;
    border-color: #b32d2e;
}

.tap2-portal-body {
    padding: 30px 36px 36px;
}

.tap2-portal-body form {
    padding: 0;
}

.tap2-portal-intro {
    margin-top: 0;
    font-family: Georgia, serif;
    font-size: 22px;
}

.tap2-portal-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--tap2-border);
}

.tap2-portal-summary a {
    display: grid;
    gap: 4px;
    padding: 22px;
    color: var(--tap2-black);
    text-decoration: none;
    border-right: 1px solid var(--tap2-border);
}

.tap2-portal-summary a:last-child {
    border-right: 0;
}

.tap2-portal-summary strong {
    color: var(--tap2-gold);
    font-family: Georgia, serif;
    font-size: 30px;
}

.tap2-portal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.tap2-portal-actions a,
.tap2-portal-button,
.tap2-secondary-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 9px 16px;
    color: #161616;
    background: var(--tap2-yellow);
    border: 1px solid #bd8f18;
    border-radius: 3px;
    font-weight: 700;
    text-decoration: none;
}

.tap2-secondary-button {
    color: var(--tap2-black, #1d1d1d);
    background: #fff;
    border-color: #a8a39a;
}

.tap2-profile-panel {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--tap2-border);
}

.tap2-panel-heading,
.tap2-artist-acts__header,
.tap2-act-editor__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tap2-panel-heading {
    margin-bottom: 20px;
}

.tap2-panel-heading span,
.tap2-artist-acts__header span,
.tap2-act-editor__heading > div > span {
    color: var(--tap2-gold, #9a6a08);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tap2-panel-heading h2,
.tap2-act-editor__heading h2 {
    margin: 4px 0 0;
    font-family: Georgia, serif;
    letter-spacing: 0;
}

.tap2-contact-form {
    max-width: 680px;
}

.tap2-dashboard-acts {
    display: grid;
    border-top: 1px solid var(--tap2-border);
}

.tap2-dashboard-acts > a {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 4px;
    color: var(--tap2-black);
    text-decoration: none;
    border-bottom: 1px solid var(--tap2-border);
}

.tap2-dashboard-acts > a span {
    display: grid;
    gap: 4px;
}

.tap2-dashboard-acts small {
    color: #5f5a52;
}

.tap2-dashboard-acts b {
    color: var(--tap2-gold);
    white-space: nowrap;
}

.tap2-portal-form {
    display: grid;
    gap: 18px;
}

.tap2-portal-form label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

.tap2-portal-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tap2-portal-form input,
.tap2-portal-form select,
.tap2-portal-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #a8a39a;
    border-radius: 2px;
    font: inherit;
}

.tap2-portal-form button,
.tap2-portal-table button {
    width: max-content;
    min-height: 40px;
    padding: 8px 15px;
    color: #161616;
    background: var(--tap2-yellow);
    border: 1px solid #bd8f18;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
}

.tap2-portal-table-wrap {
    overflow-x: auto;
}

.tap2-portal-table {
    width: 100%;
    border-collapse: collapse;
}

.tap2-portal-table th,
.tap2-portal-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--tap2-border);
}

.tap2-portal-table th {
    background: #f3f1ec;
    font-size: 12px;
    text-transform: uppercase;
}

.tap2-calendar-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tap2-calendar-nav a:last-child {
    text-align: right;
}

.tap2-calendar-weekdays,
.tap2-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.tap2-calendar-weekdays span {
    padding: 8px;
    color: #fff;
    background: var(--tap2-black);
    text-align: center;
    font-weight: 700;
}

.tap2-calendar-days > div,
.tap2-calendar-days > span {
    min-height: 100px;
    padding: 8px;
    border-right: 1px solid var(--tap2-border);
    border-bottom: 1px solid var(--tap2-border);
}

.tap2-calendar-days > :nth-child(7n + 1) {
    border-left: 1px solid var(--tap2-border);
}

.tap2-calendar-days a,
.tap2-calendar-days div > span {
    display: block;
    margin-top: 7px;
    padding: 5px;
    color: var(--tap2-black);
    background: #f7e7aa;
    font-size: 12px;
    line-height: 1.25;
    text-decoration: none;
}

.tap2-upcoming-title {
    margin-top: 36px;
    font-family: Georgia, serif;
    letter-spacing: 0;
}

.tap2-event-cover {
    color: var(--tap2-gold);
    font-weight: 700;
}

.tap2-event-list {
    display: grid;
    gap: 16px;
}

.tap2-event-list article {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--tap2-border);
}

.tap2-event-list img {
    width: 112px;
    height: 112px;
    object-fit: cover;
}

.tap2-event-list h2 {
    margin: 4px 0;
    font-family: Georgia, serif;
    font-size: 22px;
}

.tap2-event-list time {
    color: var(--tap2-gold);
    font-weight: 700;
}

.tap2-event-genre {
    margin: 0 0 6px;
    color: var(--tap2-gold);
    font-weight: 700;
}

.tap2-plugin-page .wp-block-post-title {
    display: none;
}

.tap2-login-panel {
    width: min(100%, 520px);
}

.tap2-login-panel #loginform {
    display: grid;
    gap: 18px;
}

.tap2-login-panel #loginform > p {
    margin: 0;
}

.tap2-login-panel #loginform label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

.tap2-login-panel #loginform input[type="text"],
.tap2-login-panel #loginform input[type="password"] {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #a8a39a;
    border-radius: 2px;
    font: inherit;
}

.tap2-login-panel #loginform input:focus {
    border-color: var(--tap2-gold);
    outline: 2px solid rgba(154, 106, 8, 0.2);
    outline-offset: 1px;
}

.tap2-login-panel #loginform .login-remember label {
    display: inline-flex;
    align-items: center;
    grid-auto-flow: column;
    justify-content: start;
}

.tap2-login-panel #wp-submit {
    min-height: 44px;
    padding: 10px 20px;
    color: #161616;
    background: var(--tap2-yellow);
    border: 1px solid #bd8f18;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
}

.tap2-portal-help {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--tap2-border);
}

.tap2-artist-acts,
.tap2-public-directory,
.tap2-public-profile {
    --tap2-black: #1d1d1d;
    --tap2-gold: #9a6a08;
    --tap2-yellow: #f2c94c;
    --tap2-border: #d8d2c7;
    width: min(100%, 920px);
    margin: 32px auto;
}

.tap2-artist-acts {
    --tap2-black: #1d1d1d;
    --tap2-gold: #9a6a08;
    --tap2-yellow: #f2c94c;
    --tap2-border: #d8d2c7;
    box-sizing: border-box;
    color: var(--tap2-black);
    font-family: Arial, sans-serif;
}

.tap2-artist-acts *,
.tap2-artist-acts *::before,
.tap2-artist-acts *::after {
    box-sizing: inherit;
}

.tap2-artist-acts__header {
    margin-bottom: 24px;
    padding: 28px 32px;
    color: #fff;
    background: var(--tap2-black);
}

.tap2-artist-acts__header h1 {
    margin: 5px 0;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 32px;
    letter-spacing: 0;
}

.tap2-artist-acts__header p {
    margin: 0;
    color: #f0eee9;
}

.tap2-artist-acts > .tap2-application-message {
    margin: 0 0 20px;
}

.tap2-act-profile-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tap2-act-profile-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    color: var(--tap2-black);
    background: #fff;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid var(--tap2-border);
    box-shadow: 0 8px 22px rgba(29, 29, 29, 0.08);
}

.tap2-act-profile-card > img,
.tap2-act-profile-card__placeholder {
    display: grid;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    background: #ece9e2;
    font-family: Georgia, serif;
    font-size: 48px;
    place-items: center;
}

.tap2-act-profile-card__body {
    display: flex;
    min-height: 180px;
    padding: 18px;
    flex-direction: column;
    gap: 8px;
}

.tap2-act-profile-card__body strong {
    font-family: Georgia, serif;
    font-size: 22px;
    letter-spacing: 0;
}

.tap2-act-profile-card__body small {
    color: #5f5a52;
}

.tap2-act-profile-card__body b {
    margin-top: auto;
    color: var(--tap2-gold);
}

.tap2-status-pill {
    display: inline-flex;
    width: max-content;
    padding: 4px 8px;
    color: #604400;
    background: #fff2c7;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.tap2-status-pill.is-approved {
    color: #185b32;
    background: #e4f4e9;
}

.tap2-status-pill.is-rejected {
    color: #8a2424;
    background: #fae7e7;
}

.tap2-act-editor {
    padding: 28px 32px 32px;
    background: #fff;
    border: 1px solid var(--tap2-border);
}

.tap2-act-editor__heading {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--tap2-border);
}

.tap2-act-editor__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tap2-act-editor label {
    display: grid;
    min-width: 0;
    gap: 7px;
    font-weight: 700;
}

.tap2-act-editor label.is-wide {
    grid-column: 1 / -1;
}

.tap2-act-editor input,
.tap2-act-editor textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #a8a39a;
    border-radius: 2px;
    font: inherit;
    font-weight: 400;
}

.tap2-act-editor input:focus,
.tap2-act-editor textarea:focus {
    border-color: var(--tap2-gold);
    outline: 2px solid rgba(154, 106, 8, 0.2);
    outline-offset: 1px;
}

.tap2-act-editor__media {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--tap2-border);
}

.tap2-act-editor__media small {
    color: #5f5a52;
    font-size: 12px;
    font-weight: 400;
}

.tap2-current-photo {
    display: block;
    width: min(100%, 220px);
}

.tap2-current-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
}

.tap2-act-editor > button {
    min-height: 44px;
    margin-top: 24px;
    padding: 10px 20px;
    color: #161616;
    background: var(--tap2-yellow);
    border: 1px solid #bd8f18;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
}

.tap2-public-directory__header {
    margin-bottom: 28px;
    padding: 30px 32px;
    color: #fff;
    background: var(--tap2-black);
}

.tap2-public-directory__header span {
    color: var(--tap2-yellow);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tap2-public-directory__header h1 {
    margin: 5px 0 8px;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 36px;
    letter-spacing: 0;
}

.tap2-public-directory__header p {
    margin: 0;
    color: #f0eee9;
    font-size: 18px;
}

.tap2-public-acts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.tap2-public-acts article {
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #d8d2c7;
    box-shadow: 0 8px 24px rgba(29, 29, 29, 0.08);
}

.tap2-public-act-card {
    display: flex;
    height: 100%;
    color: inherit;
    flex-direction: column;
    text-decoration: none;
}

.tap2-public-act-card img,
.tap2-public-act-placeholder {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
}

.tap2-public-act-placeholder {
    display: grid;
    color: #1d1d1d;
    background: #ece9e2;
    font-family: Georgia, serif;
    font-size: 52px;
    place-items: center;
}

.tap2-public-act-card-body {
    display: flex;
    padding: 18px;
    flex: 1;
    flex-direction: column;
    gap: 8px;
}

.tap2-public-act-card-body strong {
    font-family: Georgia, serif;
    font-size: 24px;
    letter-spacing: 0;
}

.tap2-public-act-card-body b {
    margin-top: auto;
    color: var(--tap2-gold);
}

.tap2-act-meta {
    color: var(--tap2-gold);
    font-weight: 700;
}

.tap2-act-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tap2-public-profile__back {
    margin-bottom: 20px;
}

.tap2-public-profile__hero {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
}

.tap2-public-profile__hero > img,
.tap2-public-profile__hero > .tap2-public-act-placeholder {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
}

.tap2-public-profile__hero h1 {
    margin: 8px 0;
    font-family: Georgia, serif;
    font-size: 56px;
    letter-spacing: 0;
    line-height: 1;
}

.tap2-public-profile__logo {
    width: auto;
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
}

.tap2-public-profile__bio,
.tap2-public-profile > .tap2-act-links,
.tap2-public-profile__gallery {
    margin-top: 32px;
}

.tap2-public-profile__bio {
    font-size: 18px;
    line-height: 1.65;
}

.tap2-public-profile__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.tap2-public-profile__gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* V1 public artist directory and profile presentation, backed by V2 acts. */
.tap-public-artists,
.tap-public-profile {
    box-sizing: border-box;
    width: min(100%, 1180px);
    margin: 0 auto;
    color: #191919;
}

.tap-public-artists *,
.tap-public-profile * {
    box-sizing: inherit;
}

.tap-public-page-hero {
    padding: 10px 0 26px;
    border-bottom: 1px solid #ded7cc;
}

.tap-public-artists-heading,
.tap-public-profile-heading {
    margin: 0 0 28px;
}

.tap-public-eyebrow {
    margin: 0 0 8px;
    color: #7a211f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tap-public-artists h1,
.tap-public-profile h1 {
    margin: 0;
    font-size: 4.65rem;
    line-height: 0.96;
    letter-spacing: 0;
}

.tap-public-artists-heading > p:last-child {
    max-width: 720px;
    margin: 14px 0 0;
    color: #4f4f4f;
    font-size: 1.08rem;
    line-height: 1.55;
}

.tap-public-artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.tap-public-artist-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #d8d0c5;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(22, 16, 11, 0.08);
}

.tap-public-card-link {
    display: flex;
    height: 100%;
    color: inherit;
    flex-direction: column;
    text-decoration: none;
}

.tap-public-card-link:hover,
.tap-public-card-link:focus-visible {
    color: inherit;
    transform: translateY(-2px);
}

.tap-public-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #171717;
}

.tap-public-card-image img,
.tap-public-profile-hero img,
.tap-public-gallery-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.tap-public-card-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6d67b;
    background: #1d2f36;
}

.tap-public-card-image--placeholder > span {
    font-size: 3rem;
    font-weight: 900;
}

.tap-public-card-body {
    display: flex;
    padding: 20px;
    flex: 1;
    flex-direction: column;
}

.tap-public-card-name {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.05;
}

.tap-public-card-meta {
    margin-top: 8px;
    color: #666;
}

.tap-public-card-cta {
    margin-top: auto;
    padding-top: 22px;
    color: #7a211f;
    font-weight: 800;
}

.tap-public-empty,
.tap-public-not-found {
    padding: 28px;
    background: #faf7f2;
    border: 1px solid #d8d0c5;
    border-radius: 8px;
}

.tap-public-back {
    margin: 0 0 16px;
}

.tap-public-back a {
    color: #7a211f;
    font-weight: 700;
}

.tap-public-profile-hero {
    overflow: hidden;
    margin-bottom: 28px;
    aspect-ratio: 16 / 8;
    background: #171717;
    border-radius: 8px;
}

.tap-public-profile-heading {
    display: flex;
    align-items: center;
    gap: 24px;
}

.tap-public-profile-logo {
    display: flex;
    width: 150px;
    height: 150px;
    padding: 14px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #d8d0c5;
    border-radius: 8px;
}

.tap-public-profile-logo img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.tap-public-profile-meta {
    margin: 12px 0 0;
    color: #5d5d5d;
    font-size: 1.1rem;
}

.tap-public-profile-bio {
    max-width: 760px;
    margin: 34px 0;
}

.tap-public-profile-bio h2,
.tap-public-profile-gallery h2,
.tap-public-profile-events h2 {
    margin: 0 0 14px;
    font-size: 1.6rem;
}

.tap-public-profile-bio p {
    font-size: 1.08rem;
    line-height: 1.7;
}

.tap-public-profile-links {
    display: flex;
    margin: 28px 0 38px;
    flex-wrap: wrap;
    gap: 10px;
}

.tap-public-profile-links a {
    display: inline-flex;
    padding: 10px 16px;
    color: #7a211f;
    border: 1px solid #7a211f;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

.tap-public-profile-links a:hover,
.tap-public-profile-links a:focus-visible {
    color: #fff;
    background: #7a211f;
}

.tap-public-profile-events {
    margin: 34px 0;
}

.tap-public-profile-event-list {
    display: grid;
    max-width: 820px;
    gap: 12px;
}

.tap-public-profile-event {
    display: grid;
    padding: 16px;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    background: #fff;
    border: 1px solid #d8d0c5;
    border-radius: 8px;
}

.tap-public-profile-event time {
    color: #191919;
    font-weight: 900;
}

.tap-public-profile-event time span {
    display: block;
    margin-top: 4px;
    color: #606060;
    font-weight: 700;
}

.tap-public-profile-event strong {
    display: block;
    font-size: 1.12rem;
    line-height: 1.2;
}

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

.tap-public-gallery-grid figure {
    margin: 0;
}

.tap-public-gallery-grid img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
}

@media (max-width: 680px) {
    .tap2-application {
        margin: 16px auto;
    }

    .tap2-application > header,
    .tap2-application form {
        padding: 24px 20px;
    }

    .tap2-application-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .tap2-application-field.is-wide {
        grid-column: auto;
    }

    .tap2-application-message {
        margin-right: 20px;
        margin-left: 20px;
    }

    .tap2-portal-body {
        padding: 24px 20px;
    }

    .tap2-portal-summary,
    .tap2-portal-form-row,
    .tap2-public-acts,
    .tap2-act-profile-list,
    .tap2-act-editor__grid,
    .tap2-act-editor__media {
        grid-template-columns: minmax(0, 1fr);
    }

    .tap2-panel-heading,
    .tap2-artist-acts__header,
    .tap2-act-editor__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .tap2-artist-acts__header,
    .tap2-act-editor {
        padding: 24px 20px;
    }

    .tap2-act-editor label.is-wide {
        grid-column: auto;
    }

    .tap2-public-profile__hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .tap2-public-profile__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tap2-public-profile__hero h1 {
        font-size: 40px;
    }

    .tap-public-artists h1,
    .tap-public-profile h1 {
        font-size: 2.65rem;
    }

    .tap-public-profile-hero {
        aspect-ratio: 4 / 3;
    }

    .tap-public-profile-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .tap-public-profile-logo {
        width: 112px;
        height: 112px;
    }

    .tap-public-profile-event {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .tap2-portal-summary a {
        border-right: 0;
        border-bottom: 1px solid var(--tap2-border);
    }

    .tap2-portal-summary a:last-child {
        border-bottom: 0;
    }

    .tap2-event-list article {
        grid-template-columns: 84px minmax(0, 1fr);
    }

    .tap2-event-list img {
        width: 84px;
        height: 84px;
    }

    .tap2-calendar-days > div,
    .tap2-calendar-days > span {
        min-height: 70px;
        padding: 4px;
    }

    .tap2-calendar-days a,
    .tap2-calendar-days div > span {
        overflow: hidden;
        padding: 3px;
        font-size: 10px;
    }
}
