:root {
    --gjh-pink: #ff167d;
    --gjh-pink-dark: #d90b63;
    --gjh-rose: #ffd8e8;
    --gjh-green: #123a32;
    --gjh-green-deep: #082820;
    --gjh-mint: #d9eee6;
    --gjh-cream: #f8f3e9;
    --gjh-paper: #fffdf8;
    --gjh-ink: #19231f;
    --gjh-muted: #62706a;
    --gjh-line: rgba(18, 58, 50, .14);
    --gjh-shadow: 0 28px 80px rgba(18, 45, 38, .12);
    --gjh-sans: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    --gjh-serif: "Iropke Batang", "Noto Serif KR", Batang, serif;
}

html {
    scroll-behavior: smooth;
}

body.gjh-hub-page {
    margin: 0;
    color: var(--gjh-ink);
    background: var(--gjh-paper);
    font-family: var(--gjh-sans);
    font-size: 16px;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
}

body.gjh-hub-page *,
body.gjh-hub-page *::before,
body.gjh-hub-page *::after {
    box-sizing: border-box;
}

body.gjh-hub-page a {
    color: inherit;
    text-decoration: none;
}

body.gjh-hub-page img {
    display: block;
    max-width: 100%;
}

body.gjh-hub-page button,
body.gjh-hub-page input {
    font: inherit;
}

.gjh-shell {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.gjh-skip-link {
    position: fixed;
    z-index: 99999;
    top: 8px;
    left: 8px;
    padding: 12px 18px;
    color: white !important;
    background: var(--gjh-green-deep);
    transform: translateY(-160%);
}

.gjh-skip-link:focus {
    transform: translateY(0);
}

.gjh-site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.admin-bar .gjh-site-header {
    top: 32px;
}

.gjh-site-header-solid {
    position: relative;
    color: var(--gjh-ink);
    border-color: var(--gjh-line);
    background: var(--gjh-paper);
}

.gjh-header-inner {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.gjh-brand,
.gjh-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.gjh-brand > span:last-child,
.gjh-footer-brand > span:last-child {
    display: flex;
    flex-direction: column;
}

.gjh-brand strong,
.gjh-footer-brand strong {
    font-family: var(--gjh-serif);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.045em;
}

.gjh-brand small,
.gjh-footer-brand small {
    margin-top: -2px;
    opacity: .56;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .11em;
}

.gjh-logo-mark {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
}

.gjh-logo-mark svg {
    width: 100%;
    height: 100%;
    fill: none;
}

.gjh-logo-mark rect {
    fill: var(--gjh-pink);
    stroke: none;
}

.gjh-logo-mark path {
    stroke: white;
    stroke-width: 3.2;
    stroke-linecap: round;
}

.gjh-logo-mark .gjh-logo-leaf {
    stroke: #ffdfec;
    stroke-width: 2;
}

.gjh-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 13px;
    font-weight: 650;
}

.gjh-nav a {
    position: relative;
    padding: 8px 0;
}

.gjh-nav a::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transition: transform .25s ease;
}

.gjh-nav a:hover::after,
.gjh-nav a:focus-visible::after {
    transform: scaleX(1);
}

.gjh-header-call {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.gjh-site-header-solid .gjh-header-call {
    border-color: var(--gjh-line);
}

.gjh-header-call span {
    opacity: .6;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

.gjh-header-call strong {
    font-size: 17px;
    letter-spacing: -.02em;
}

.gjh-hero {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 76% 20%, rgba(255, 58, 143, .24), transparent 25%),
        linear-gradient(135deg, #0c3028 0%, #123d34 52%, #09261f 100%);
}

.gjh-hero::before {
    position: absolute;
    inset: 0;
    opacity: .17;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(to right, transparent, black 28%, black 100%);
}

.gjh-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 860px;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: 100px;
    padding: 156px 0 94px;
}

.gjh-eyebrow,
.gjh-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 25px;
    color: var(--gjh-pink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

.gjh-eyebrow span {
    display: inline-block;
    width: 34px;
    height: 2px;
    background: var(--gjh-pink);
}

.gjh-hero h1,
.gjh-section-head h2,
.gjh-sticky-title h2,
.gjh-admission-copy h2,
.gjh-location-title h2,
.gjh-article-title h1 {
    margin: 0;
    font-family: var(--gjh-serif);
    font-weight: 700;
    letter-spacing: -.065em;
}

.gjh-hero h1 {
    max-width: 730px;
    font-size: clamp(54px, 5.1vw, 78px);
    line-height: 1.18;
}

.gjh-hero h1 em {
    color: #ff83b7;
    font-style: normal;
}

.gjh-hero-lead {
    max-width: 680px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    line-height: 1.9;
}

.gjh-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.gjh-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 25px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 750;
    transition: transform .22s ease, background .22s ease, color .22s ease;
}

.gjh-button:hover,
.gjh-button:focus-visible {
    transform: translateY(-2px);
}

.gjh-button svg,
.gjh-text-link svg,
.gjh-card-link svg,
.gjh-aside-card a svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gjh-button-primary {
    color: white !important;
    background: var(--gjh-pink);
}

.gjh-button-primary:hover,
.gjh-button-primary:focus-visible {
    background: var(--gjh-pink-dark);
}

.gjh-button-outline {
    color: white !important;
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .03);
}

.gjh-button-outline:hover,
.gjh-button-outline:focus-visible {
    color: var(--gjh-green-deep) !important;
    background: white;
}

.gjh-hero-facts {
    display: flex;
    gap: 0;
    margin: 50px 0 0;
    padding: 0;
    list-style: none;
}

.gjh-hero-facts li {
    display: flex;
    min-width: 165px;
    flex-direction: column;
    gap: 3px;
    padding: 0 24px;
    border-left: 1px solid rgba(255, 255, 255, .17);
}

.gjh-hero-facts li:first-child {
    padding-left: 0;
    border-left: 0;
}

.gjh-hero-facts small {
    color: rgba(255,255,255,.42);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.gjh-hero-facts strong {
    font-size: 13px;
    font-weight: 650;
}

.gjh-hero-panel {
    position: relative;
    min-height: 570px;
    padding: 37px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: linear-gradient(160deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025));
    box-shadow: 0 30px 90px rgba(0, 0, 0, .18);
    backdrop-filter: blur(6px);
}

.gjh-panel-top {
    display: flex;
    justify-content: space-between;
}

.gjh-panel-top span {
    color: var(--gjh-pink);
    font-size: 12px;
    font-weight: 800;
}

.gjh-panel-top p {
    margin: 0;
    color: rgba(255,255,255,.38);
    font-size: 9px;
    font-weight: 800;
    line-height: 1.45;
    text-align: right;
    letter-spacing: .18em;
}

.gjh-panel-symbol {
    position: relative;
    display: grid;
    width: 255px;
    height: 255px;
    margin: 48px auto 0;
    place-items: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
}

.gjh-panel-symbol::before,
.gjh-panel-symbol::after {
    position: absolute;
    background: rgba(255,255,255,.12);
    content: "";
}

.gjh-panel-symbol::before {
    width: 1px;
    height: 120%;
}

.gjh-panel-symbol::after {
    width: 120%;
    height: 1px;
}

.gjh-panel-symbol span {
    position: absolute;
    inset: 23px;
    border: 1px dashed rgba(255,255,255,.18);
    border-radius: 50%;
}

.gjh-panel-symbol span:nth-child(2) {
    inset: 58px;
    border-style: solid;
    border-color: rgba(255,22,125,.4);
}

.gjh-panel-symbol b {
    position: relative;
    z-index: 2;
    color: white;
    font-family: var(--gjh-serif);
    font-size: 48px;
    letter-spacing: .04em;
}

.gjh-panel-copy {
    position: absolute;
    right: 36px;
    bottom: 36px;
    left: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.16);
}

.gjh-panel-copy strong {
    font-family: var(--gjh-serif);
    font-size: 22px;
}

.gjh-panel-copy p {
    margin: 9px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.7;
}

.gjh-hero-marquee {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    color: rgba(255,255,255,.055);
    font-size: clamp(42px, 7vw, 100px);
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -.045em;
}

.gjh-hero-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.gjh-orbit-one {
    top: -280px;
    right: -170px;
    width: 780px;
    height: 780px;
}

.gjh-orbit-two {
    right: 260px;
    bottom: -300px;
    width: 540px;
    height: 540px;
}

.gjh-section {
    padding: 120px 0;
}

.gjh-section-head {
    max-width: 780px;
}

.gjh-section-head h2,
.gjh-sticky-title h2,
.gjh-admission-copy h2,
.gjh-location-title h2 {
    font-size: clamp(40px, 4vw, 59px);
    line-height: 1.28;
}

.gjh-section-head > p:last-child,
.gjh-sticky-title > p:last-child,
.gjh-admission-copy > p,
.gjh-location-title > p {
    margin: 22px 0 0;
    color: var(--gjh-muted);
    line-height: 1.85;
}

.gjh-head-row {
    display: flex;
    max-width: none;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.gjh-head-row > p {
    max-width: 390px;
}

.gjh-guide-section {
    background: var(--gjh-cream);
}

.gjh-post-grid .pt-cv-heading-container {
    margin: 0 0 24px;
    color: var(--gjh-green);
    font-family: var(--gjh-serif);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -.045em;
}

.gjh-post-grid .pt-cv-heading-container::before {
    display: inline-block;
    width: 5px;
    height: .86em;
    margin-right: 13px;
    border-radius: 9px;
    background: linear-gradient(180deg, var(--gjh-pink), #ff8abf);
    content: "";
    vertical-align: -.03em;
}

.gjh-post-grid .pt-cv-page {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 31.5%);
    gap: 18px;
    width: 100%;
    margin: 0;
    padding: 2px 2px 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(255,45,134,.42) rgba(18,58,50,.08);
    scrollbar-width: thin;
}

.gjh-post-grid .pt-cv-content-item {
    min-width: 0;
    margin: 0;
    padding: 0 0 22px;
    overflow: hidden;
    background: white;
    box-shadow: 0 14px 36px rgba(18,58,50,.08);
    scroll-snap-align: start;
}

.gjh-post-grid .pt-cv-thumb-wrapper,
.gjh-post-grid .pt-cv-href-thumbnail {
    display: block;
    width: 100%;
    margin: 0;
}

.gjh-post-grid .pt-cv-thumbnail {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border: 0;
    transition: transform .35s ease;
}

.gjh-post-grid .pt-cv-content-item:hover .pt-cv-thumbnail {
    transform: scale(1.025);
}

.gjh-post-grid .pt-cv-title {
    margin: 19px 20px 0;
    font-size: 18px;
    font-weight: 730;
    line-height: 1.45;
    letter-spacing: -.025em;
}

.gjh-post-grid .pt-cv-title a {
    color: var(--gjh-pink);
    text-decoration: none;
}

.gjh-carousel-controls {
    display: flex;
    gap: 8px;
}

.gjh-carousel-controls button {
    display: inline-grid;
    width: 51px;
    height: 51px;
    padding: 0;
    place-items: center;
    color: var(--gjh-green);
    border: 1px solid var(--gjh-line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, opacity .2s ease;
}

.gjh-carousel-controls button:hover:not(:disabled),
.gjh-carousel-controls button:focus-visible:not(:disabled) {
    color: white;
    background: var(--gjh-green);
}

.gjh-carousel-controls button:disabled {
    opacity: .28;
    cursor: default;
}

.gjh-carousel-controls svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gjh-carousel {
    margin-top: 55px;
}

.gjh-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(340px, calc((100% - 48px) / 3));
    gap: 24px;
    margin: 0;
    padding: 0 0 22px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(18,58,50,.27) transparent;
    scrollbar-width: thin;
    list-style: none;
}

.gjh-carousel-track::-webkit-scrollbar {
    height: 4px;
}

.gjh-carousel-track::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(18,58,50,.26);
}

.gjh-guide-card {
    min-width: 0;
    scroll-snap-align: start;
}

.gjh-guide-card article {
    display: block;
    height: 100%;
}

.gjh-card-image-link {
    display: block;
}

.gjh-card-title-link {
    display: inline;
    color: inherit;
}

.gjh-guide-card article {
    overflow: hidden;
    background: white;
    box-shadow: 0 18px 45px rgba(18,58,50,.055);
}

.gjh-card-image {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gjh-rose);
}

.gjh-card-image::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.45);
    content: "";
    pointer-events: none;
}

.gjh-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.gjh-card-image-link:hover .gjh-card-image img {
    transform: scale(1.035);
}

.gjh-card-body {
    display: flex;
    min-height: 268px;
    flex-direction: column;
    padding: 28px;
}

.gjh-card-number {
    color: var(--gjh-pink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.gjh-card-body h3 {
    margin: 12px 0 0;
    font-family: var(--gjh-serif);
    font-size: 27px;
    line-height: 1.4;
    letter-spacing: -.045em;
}

.gjh-card-body p {
    margin: 12px 0 0;
    color: var(--gjh-muted);
    font-size: 13px;
    line-height: 1.75;
}

.gjh-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 21px;
    border-top: 1px solid var(--gjh-line);
    color: var(--gjh-green);
    font-size: 12px;
    font-weight: 800;
}

.gjh-swipe-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 0;
    color: #88928e;
    font-size: 11px;
}

.gjh-swipe-hint span {
    width: 28px;
    height: 1px;
    background: #a8afac;
}

.gjh-intro-section {
    background: white;
}

.gjh-intro-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 120px;
}

.gjh-sticky-title {
    align-self: start;
    position: sticky;
    top: 42px;
}

.gjh-editorial-copy {
    padding-top: 52px;
    border-top: 1px solid var(--gjh-line);
}

.gjh-editorial-copy p {
    margin: 0 0 25px;
    color: #53615b;
    font-size: 16px;
    line-height: 2;
}

.gjh-editorial-copy .gjh-lead-paragraph {
    color: var(--gjh-ink);
    font-family: var(--gjh-serif);
    font-size: 24px;
    line-height: 1.85;
}

.gjh-lead-paragraph span {
    color: var(--gjh-pink-dark);
}

.gjh-editorial-copy blockquote {
    margin: 45px 0 0;
    padding: 28px 32px;
    color: var(--gjh-green);
    border: 0;
    border-left: 4px solid var(--gjh-pink);
    background: var(--gjh-cream);
    font-family: var(--gjh-serif);
    font-size: 21px;
    line-height: 1.8;
}

.gjh-standard-section {
    color: white;
    background: var(--gjh-green-deep);
}

.gjh-head-light h2 {
    color: white;
}

.gjh-head-light > p,
.gjh-standard-section .gjh-head-row > p {
    color: rgba(255,255,255,.58);
}

.gjh-standard-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 70px 0 0;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
    list-style: none;
}

.gjh-standard-grid li {
    min-height: 390px;
    padding: 33px 28px;
    border-right: 1px solid rgba(255,255,255,.14);
}

.gjh-standard-grid li:last-child {
    border-right: 0;
}

.gjh-standard-grid > li > span {
    color: var(--gjh-pink);
    font-size: 11px;
    font-weight: 800;
}

.gjh-standard-grid li div {
    margin-top: 105px;
}

.gjh-standard-grid h3 {
    margin: 0;
    color: white;
    font-family: var(--gjh-serif);
    font-size: 22px;
    letter-spacing: -.035em;
}

.gjh-standard-grid p {
    margin: 16px 0 0;
    color: rgba(255,255,255,.56);
    font-size: 13px;
    line-height: 1.85;
}

.gjh-admission-section {
    background: var(--gjh-mint);
}

.gjh-admission-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 90px;
}

.gjh-text-link {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    margin-top: 34px;
    padding-bottom: 7px;
    color: var(--gjh-green);
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 800;
}

.gjh-admission-cards {
    border-top: 1px solid rgba(18,58,50,.2);
}

.gjh-admission-cards article {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 28px;
    padding: 38px 0;
    border-bottom: 1px solid rgba(18,58,50,.2);
}

.gjh-admission-cards article > span {
    color: var(--gjh-pink-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .14em;
}

.gjh-admission-cards h3 {
    margin: 0;
    font-family: var(--gjh-serif);
    font-size: 23px;
    letter-spacing: -.035em;
}

.gjh-admission-cards ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
    margin: 19px 0 0;
    padding: 0;
    color: var(--gjh-muted);
    font-size: 13px;
    list-style: none;
}

.gjh-admission-cards li::before {
    margin-right: 8px;
    color: var(--gjh-pink);
    content: "•";
}

.gjh-seo-section {
    background: white;
}

.gjh-seo-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 62px;
    border-top: 1px solid var(--gjh-line);
}

.gjh-seo-columns > div {
    padding: 36px 34px 0;
    border-left: 1px solid var(--gjh-line);
}

.gjh-seo-columns > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.gjh-seo-columns h3 {
    margin: 0 0 19px;
    font-family: var(--gjh-serif);
    font-size: 21px;
    letter-spacing: -.035em;
}

.gjh-seo-columns p {
    margin: 0 0 18px;
    color: var(--gjh-muted);
    font-size: 14px;
    line-height: 1.9;
}

.gjh-location-section {
    color: white;
    background: var(--gjh-green);
}

.gjh-location-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 110px;
}

.gjh-location-title h2 {
    color: white;
}

.gjh-location-title > p {
    color: rgba(255,255,255,.6);
}

.gjh-location-details dl {
    margin: 0 0 38px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.gjh-location-details dl > div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 28px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.gjh-location-details dt {
    color: rgba(255,255,255,.4);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

.gjh-location-details dd {
    margin: 0;
    font-family: var(--gjh-serif);
    font-size: 21px;
    line-height: 1.55;
}

.gjh-faq-section {
    background: var(--gjh-paper);
}

.gjh-faq-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 105px;
}

.gjh-faq-list {
    border-top: 1px solid var(--gjh-line);
}

.gjh-faq-list details {
    border-bottom: 1px solid var(--gjh-line);
}

.gjh-faq-list summary {
    display: grid;
    grid-template-columns: 44px 1fr 22px;
    align-items: center;
    gap: 13px;
    padding: 26px 0;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
}

.gjh-faq-list summary::-webkit-details-marker {
    display: none;
}

.gjh-faq-list summary span {
    color: var(--gjh-pink);
    font-size: 10px;
    font-weight: 800;
}

.gjh-faq-list summary svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    transition: transform .22s ease;
}

.gjh-faq-list details[open] summary svg {
    transform: rotate(180deg);
}

.gjh-faq-list details p {
    margin: -4px 0 0;
    padding: 0 18px 27px 57px;
    color: var(--gjh-muted);
    font-size: 14px;
    line-height: 1.85;
}

.gjh-notice {
    padding: 33px 0;
    color: #66716d;
    border-top: 1px solid var(--gjh-line);
    background: #f1eee7;
}

.gjh-notice .gjh-shell {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 34px;
}

.gjh-notice strong {
    color: var(--gjh-ink);
    font-size: 12px;
}

.gjh-notice p {
    margin: 0;
    font-size: 12px;
    line-height: 1.75;
}

.gjh-footer {
    padding: 60px 0;
    color: rgba(255,255,255,.62);
    background: #071f19;
}

.gjh-footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr .8fr;
    align-items: end;
    gap: 45px;
}

.gjh-footer-brand strong {
    color: white;
}

.gjh-footer p {
    margin: 3px 0;
    font-size: 12px;
}

.gjh-footer-grid > div:last-child {
    text-align: right;
}

.gjh-footer a {
    color: white;
    font-size: 12px;
}

/* Article pages */
.gjh-article-hero {
    position: relative;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 86% 15%, rgba(255,22,125,.23), transparent 25%),
        var(--gjh-green-deep);
}

.gjh-article-hero::after {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    pointer-events: none;
}

.gjh-article-hero > .gjh-shell {
    position: relative;
    z-index: 2;
    padding-top: 48px;
    padding-bottom: 92px;
}

.gjh-breadcrumb {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 48px;
    color: rgba(255,255,255,.54);
    font-size: 11px;
}

.gjh-breadcrumb a:hover,
.gjh-breadcrumb a:focus-visible {
    color: white;
}

.gjh-article-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .65fr;
    align-items: center;
    gap: 100px;
}

.gjh-article-title h1 {
    color: white;
    font-size: clamp(50px, 5vw, 72px);
    line-height: 1.22;
}

.gjh-article-title > p:not(.gjh-eyebrow) {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 17px;
    line-height: 1.85;
}

.gjh-article-meta {
    display: flex;
    gap: 22px;
    margin-top: 35px;
    color: rgba(255,255,255,.42);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
}

.gjh-article-cover {
    position: relative;
    margin: 0;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
    box-shadow: 0 30px 80px rgba(0,0,0,.22);
}

.gjh-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gjh-article-section {
    padding: 105px 0 120px;
    background: white;
}

.gjh-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 320px;
    justify-content: space-between;
    gap: 85px;
}

.gjh-article-content {
    color: #44514c;
    font-size: 16px;
    line-height: 1.95;
}

.gjh-article-content > p:first-child {
    margin-top: 0;
    color: var(--gjh-ink);
    font-family: var(--gjh-serif);
    font-size: 23px;
    line-height: 1.85;
}

.gjh-article-content h2 {
    margin: 64px 0 22px;
    padding-top: 28px;
    color: var(--gjh-ink);
    border-top: 1px solid var(--gjh-line);
    font-family: var(--gjh-serif);
    font-size: 32px;
    line-height: 1.45;
    letter-spacing: -.045em;
}

.gjh-article-content h3 {
    margin: 38px 0 12px;
    color: var(--gjh-green);
    font-size: 19px;
    letter-spacing: -.02em;
}

.gjh-article-content p {
    margin: 0 0 21px;
}

.gjh-article-content ul,
.gjh-article-content ol {
    margin: 24px 0 30px;
    padding: 25px 25px 25px 48px;
    background: var(--gjh-cream);
}

.gjh-article-content li {
    margin: 8px 0;
}

.gjh-article-content blockquote {
    margin: 38px 0;
    padding: 27px 30px;
    color: var(--gjh-green);
    border-left: 4px solid var(--gjh-pink);
    background: var(--gjh-mint);
    font-family: var(--gjh-serif);
    font-size: 19px;
}

.gjh-article-content a {
    color: var(--gjh-pink-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gjh-article-content .gjh-post-note {
    margin-top: 52px;
    padding: 26px 28px;
    color: #68736f;
    border: 1px solid var(--gjh-line);
    background: #faf9f5;
    font-size: 13px;
    line-height: 1.8;
}

.gjh-article-content .gjh-post-note strong {
    display: block;
    margin-bottom: 7px;
    color: var(--gjh-ink);
}

.gjh-article-aside {
    align-self: start;
    position: sticky;
    top: 30px;
}

.gjh-aside-card {
    padding: 30px;
    color: white;
    background: var(--gjh-green);
    box-shadow: var(--gjh-shadow);
}

.gjh-aside-card small {
    color: #f7a4c6;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.gjh-aside-card h2 {
    margin: 14px 0 0;
    color: white;
    font-family: var(--gjh-serif);
    font-size: 25px;
    letter-spacing: -.04em;
}

.gjh-aside-card ul {
    margin: 25px 0 28px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.64);
    font-size: 13px;
    list-style: none;
}

.gjh-aside-card li {
    margin: 7px 0;
}

.gjh-aside-card li::before {
    margin-right: 8px;
    color: var(--gjh-pink);
    content: "•";
}

.gjh-aside-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-size: 18px;
    font-weight: 750;
}

.gjh-aside-notice {
    margin: 19px 3px 0;
    color: #7d8783;
    font-size: 11px;
    line-height: 1.7;
}

.gjh-related-section {
    background: var(--gjh-cream);
}

.gjh-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.gjh-related-card {
    background: white;
}

.gjh-related-card a {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 140px;
}

.gjh-related-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
}

.gjh-related-card span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    padding: 22px;
}

.gjh-related-card small {
    color: var(--gjh-pink-dark);
    font-size: 9px;
    font-weight: 800;
}

.gjh-related-card strong {
    font-family: var(--gjh-serif);
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -.03em;
}

.gjh-brand:focus-visible,
.gjh-nav a:focus-visible,
.gjh-header-call:focus-visible,
.gjh-button:focus-visible,
.gjh-text-link:focus-visible,
.gjh-guide-card a:focus-visible,
.gjh-related-card a:focus-visible,
.gjh-carousel-track:focus-visible,
.gjh-carousel-controls button:focus-visible,
.gjh-footer a:focus-visible,
.gjh-breadcrumb a:focus-visible {
    outline: 3px solid #ff8abb;
    outline-offset: 4px;
}

@media (max-width: 1100px) {
    .gjh-nav {
        display: none;
    }

    .gjh-hero-grid {
        grid-template-columns: 1fr .72fr;
        gap: 55px;
    }

    .gjh-hero-facts li {
        min-width: 145px;
        padding-inline: 16px;
    }

    .gjh-intro-grid,
    .gjh-location-grid,
    .gjh-faq-grid {
        gap: 65px;
    }

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

    .gjh-standard-grid li:nth-child(2) {
        border-right: 0;
    }

    .gjh-standard-grid li:nth-child(n+3) {
        border-top: 1px solid rgba(255,255,255,.14);
    }

    .gjh-seo-columns {
        grid-template-columns: 1fr;
    }

    .gjh-seo-columns > div,
    .gjh-seo-columns > div:first-child {
        padding: 28px 0;
        border-left: 0;
        border-bottom: 1px solid var(--gjh-line);
    }

    .gjh-article-layout {
        grid-template-columns: minmax(0, 1fr) 285px;
        gap: 55px;
    }

    .gjh-related-card a {
        grid-template-columns: 110px 1fr;
    }

    .gjh-related-card img {
        width: 110px;
        height: 100%;
    }
}

@media (max-width: 860px) {
    .gjh-hero {
        min-height: auto;
    }

    .gjh-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 150px 0 105px;
    }

    .gjh-hero-panel {
        display: none;
    }

    .gjh-hero-copy {
        max-width: 700px;
    }

    .gjh-intro-grid,
    .gjh-admission-grid,
    .gjh-location-grid,
    .gjh-faq-grid,
    .gjh-article-hero-grid,
    .gjh-article-layout {
        grid-template-columns: 1fr;
    }

    .gjh-sticky-title,
    .gjh-article-aside {
        position: static;
    }

    .gjh-editorial-copy {
        padding-top: 38px;
    }

    .gjh-article-cover {
        max-width: 520px;
    }

    .gjh-article-aside {
        max-width: 520px;
    }

    .gjh-related-grid {
        grid-template-columns: 1fr;
    }

    .gjh-related-card a {
        grid-template-columns: 150px 1fr;
    }

    .gjh-related-card img {
        width: 150px;
        height: 150px;
    }

    .gjh-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gjh-footer-grid > div:last-child {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .admin-bar .gjh-site-header {
        top: 46px;
    }

    .gjh-shell {
        width: min(100% - 32px, 1240px);
    }

    .gjh-header-inner {
        min-height: 75px;
    }

    .gjh-brand small {
        display: none;
    }

    .gjh-brand strong {
        font-size: 18px;
    }

    .gjh-logo-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .gjh-header-call {
        padding-left: 13px;
    }

    .gjh-header-call span {
        display: none;
    }

    .gjh-header-call strong {
        font-size: 13px;
    }

    .gjh-hero-grid {
        padding: 128px 0 78px;
    }

    .gjh-hero h1 {
        font-size: clamp(42px, 12vw, 57px);
        line-height: 1.25;
    }

    .gjh-hero-lead {
        font-size: 15px;
    }

    .gjh-hero-actions {
        display: grid;
    }

    .gjh-button {
        width: 100%;
    }

    .gjh-hero-facts {
        display: grid;
        gap: 13px;
    }

    .gjh-hero-facts li,
    .gjh-hero-facts li:first-child {
        padding: 0 0 0 15px;
        border-left: 2px solid rgba(255,255,255,.17);
    }

    .gjh-section {
        padding: 78px 0;
    }

    .gjh-head-row {
        align-items: flex-end;
        gap: 20px;
    }

    .gjh-head-row > div {
        min-width: 0;
    }

    .gjh-section-head h2,
    .gjh-sticky-title h2,
    .gjh-admission-copy h2,
    .gjh-location-title h2 {
        font-size: 36px;
    }

    .gjh-section-head > p:last-child,
    .gjh-sticky-title > p:last-child,
    .gjh-admission-copy > p,
    .gjh-location-title > p {
        font-size: 14px;
    }

    .gjh-carousel-controls button {
        width: 42px;
        height: 42px;
    }

    .gjh-carousel {
        margin-top: 35px;
    }

    .gjh-carousel-track,
    .gjh-post-grid .pt-cv-page {
        grid-auto-columns: minmax(278px, 86%);
        gap: 14px;
        margin-right: -16px;
        padding-right: 16px;
    }

    .gjh-card-body {
        min-height: 250px;
        padding: 24px;
    }

    .gjh-editorial-copy .gjh-lead-paragraph {
        font-size: 20px;
    }

    .gjh-standard-grid {
        grid-template-columns: 1fr;
    }

    .gjh-standard-grid li,
    .gjh-standard-grid li:nth-child(2) {
        min-height: auto;
        padding: 28px 0;
        border-top: 1px solid rgba(255,255,255,.14);
        border-right: 0;
    }

    .gjh-standard-grid li:first-child {
        border-top: 0;
    }

    .gjh-standard-grid li div {
        margin-top: 32px;
    }

    .gjh-admission-cards article {
        grid-template-columns: 53px 1fr;
    }

    .gjh-admission-cards ul {
        grid-template-columns: 1fr;
    }

    .gjh-location-details dl > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .gjh-faq-list summary {
        grid-template-columns: 33px 1fr 20px;
        gap: 8px;
        font-size: 14px;
    }

    .gjh-faq-list details p {
        padding-left: 41px;
    }

    .gjh-notice .gjh-shell {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gjh-footer-grid {
        grid-template-columns: 1fr;
    }

    .gjh-footer-grid > div:last-child {
        grid-column: auto;
    }

    .gjh-article-hero > .gjh-shell {
        padding-top: 34px;
        padding-bottom: 68px;
    }

    .gjh-breadcrumb {
        margin-bottom: 35px;
        overflow: hidden;
        white-space: nowrap;
    }

    .gjh-breadcrumb span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .gjh-article-title h1 {
        font-size: 45px;
    }

    .gjh-article-title > p:not(.gjh-eyebrow) {
        font-size: 15px;
    }

    .gjh-article-section {
        padding: 72px 0 82px;
    }

    .gjh-article-content > p:first-child {
        font-size: 20px;
    }

    .gjh-article-content h2 {
        margin-top: 50px;
        font-size: 27px;
    }

    .gjh-related-card a {
        grid-template-columns: 105px 1fr;
        min-height: 105px;
    }

    .gjh-related-card img {
        width: 105px;
        height: 105px;
    }

    .gjh-related-card span {
        padding: 16px;
    }

    .gjh-related-card strong {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .gjh-carousel-track {
        scroll-behavior: auto;
    }

    .gjh-card-image img,
    .gjh-button,
    .gjh-faq-list summary svg {
        transition: none;
    }
}
