.gsc-golfer-profile-screen {
    min-height: 100%;
    padding: 20px 18px 40px;
    background: #f4f5f7;
}

.gsc-golfer-profile-content {
    display: grid;
    gap: 22px;
}

.gsc-golfer-profile-section h2 {
    margin: 0 4px 7px;
    color: var(--gsc-green);
    font-size: 15px;
    font-weight: 750;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.gsc-golfer-profile-card {
    overflow: hidden;
    border: 1px solid #dfe2e6;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.gsc-golfer-profile-level-summary {
    display: grid;
    gap: 5px;
    padding: 16px 18px;
    border-bottom: 1px solid #e6e9ed;
}

.gsc-golfer-profile-level-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.gsc-golfer-profile-level-label {
    color: #06285a;
    font-size: 18px;
    font-weight: 700;
}

.gsc-golfer-profile-level-value {
    color: var(--gsc-green);
    font-size: 18px;
    font-weight: 750;
}

.gsc-golfer-profile-level-coming-soon {
    color: #8a9098;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
}

.gsc-golfer-profile-divider {
    height: 1px;
    margin: 8px 18px 0;
    background: #e6e9ed;
}

.gsc-golfer-profile-setting {
    width: 100%;
    min-height: 62px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 0 18px;
    border: 0;
    border-bottom: 1px solid #e6e9ed;
    background: transparent;
    color: #06285a;
    font: inherit;
    text-align: left;
}

.gsc-golfer-profile-card > :last-child {
    border-bottom: 0;
}

.gsc-golfer-profile-setting {
    cursor: pointer;
}

.gsc-golfer-profile-setting:disabled {
    cursor: wait;
    opacity: 0.82;
}

.gsc-golfer-profile-setting--subordinate {
    min-height: 56px;
    padding-left: 42px;
    background: #f8f9fa;
}

.gsc-golfer-profile-setting--subordinate
    .gsc-golfer-profile-setting-label {
    font-size: 17px;
    font-weight: 600;
}

.gsc-golfer-profile-setting--subordinate:disabled {
    cursor: not-allowed;
    opacity: 0.48;
}

.gsc-golfer-profile-setting-label {
    font-size: 18px;
    font-weight: 650;
}

.gsc-golfer-profile-switch {
    position: relative;
    width: 52px;
    height: 30px;
    display: block;
    border-radius: 999px;
    background: #cfd4dc;
}

.gsc-golfer-profile-switch-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 5px rgba(0, 20, 50, 0.28);
}

.gsc-golfer-profile-setting[aria-pressed="true"]
    .gsc-golfer-profile-switch {
    background: var(--gsc-green);
}

.gsc-golfer-profile-setting[aria-pressed="true"]
    .gsc-golfer-profile-switch-thumb {
    transform: translateX(22px);
}

@media (max-width: 390px) {
    .gsc-golfer-profile-screen {
        padding-inline: 14px;
    }

    .gsc-golfer-profile-level-summary,
    .gsc-golfer-profile-setting {
        padding-inline: 15px;
    }

    .gsc-golfer-profile-setting--subordinate {
        padding-left: 36px;
    }

    .gsc-golfer-profile-setting-label {
        font-size: 17px;
    }
}

/* Golfer identity profile form. */
.gsc-profile-form {
    display: grid;
    gap: 22px;
}

.gsc-profile-photo-section {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 4px 0 2px;
    color: #06285a;
    text-align: center;
}

.gsc-profile-photo-section small {
    color: #737b86;
    font-size: 13px;
    font-weight: 600;
}

.gsc-profile-photo-button {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.gsc-profile-photo-button:focus-visible {
    outline: 3px solid rgba(46, 125, 50, 0.22);
    outline-offset: 4px;
}

.gsc-profile-photo-action {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gsc-green);
    font: inherit;
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
}

.gsc-profile-photo-action:hover,
.gsc-profile-photo-action:focus-visible {
    text-decoration: underline;
}

.gsc-profile-photo-placeholder {
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin-bottom: 4px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: #dfe8e3;
    color: var(--gsc-green);
    box-shadow: 0 3px 14px rgba(0, 20, 50, 0.14);
    font-size: 40px;
    font-weight: 800;
}

.gsc-profile-photo-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gsc-profile-section {
    display: grid;
    gap: 7px;
}

.gsc-profile-section h2 {
    margin: 0 4px;
    color: var(--gsc-green);
    font-size: 15px;
    font-weight: 750;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.gsc-profile-card {
    overflow: hidden;
    border: 1px solid #dfe2e6;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.gsc-profile-field {
    display: grid;
    gap: 7px;
    padding: 14px 18px 16px;
    border-bottom: 1px solid #e6e9ed;
    color: #06285a;
    font-size: 15px;
    font-weight: 700;
}

.gsc-profile-field:last-child {
    border-bottom: 0;
}

.gsc-profile-field > span small {
    color: #7b828b;
    font-size: 13px;
    font-weight: 600;
}

.gsc-profile-field > small {
    color: #7b828b;
    font-size: 12px;
    font-weight: 600;
}

.gsc-profile-field input,
.gsc-profile-field select {
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 9px 11px;
    border: 1px solid #cfd5dc;
    border-radius: 10px;
    background: #ffffff;
    color: #06285a;
    font: inherit;
    font-size: 17px;
    font-weight: 600;
}

.gsc-profile-field input:focus,
.gsc-profile-field select:focus {
    border-color: var(--gsc-green);
    outline: 3px solid rgba(46, 125, 50, 0.14);
}

.gsc-profile-field input[readonly] {
    background: #f4f5f7;
    color: #69717b;
}

.gsc-profile-field select:disabled {
    background: #f4f5f7;
    color: #8b929a;
}

.gsc-profile-save {
    width: 100%;
    min-height: 50px;
}

.gsc-profile-save:disabled {
    cursor: wait;
    opacity: 0.7;
}

.gsc-profile-message {
    padding: 12px 14px;
    border: 1px solid #bbdcc8;
    border-radius: 12px;
    background: #edf8f1;
    color: #075b35;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.gsc-profile-message.is-error {
    border-color: #e2b8b8;
    background: #fff1f1;
    color: #8f2020;
}

@media (max-width: 390px) {
    .gsc-profile-field {
        padding-inline: 15px;
    }
}
