.upc-page {
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: #111;
    background: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.upc-page * {
    box-sizing: border-box;
}

.upc-page a {
    text-decoration: none;
}

.upc-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.upc-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 62px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(14px);
}

.upc-nav-brand {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #111;
    word-break: keep-all;
}

.upc-nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.upc-nav-menu a {
    font-size: 12px;
    font-weight: 750;
    color: #777;
    white-space: nowrap;
}

.upc-nav-menu a:hover {
    color: #111;
}

.upc-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    background: #111;
    overflow: hidden;
}

.upc-hero-bg-text {
    position: absolute;
    right: -2vw;
    bottom: 4vh;
    font-size: clamp(76px, 15vw, 220px);
    font-weight: 950;
    letter-spacing: -0.075em;
    color: rgba(255, 255, 255, 0.035);
    line-height: 0.82;
    white-space: nowrap;
}

.upc-hero-mark {
    position: absolute;
    top: 12%;
    right: 8%;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(64, 145, 108, 0.36);
    border-radius: 999px;
}

.upc-hero-mark span {
    display: block;
    width: 100%;
    height: 100%;
    border: 34px solid rgba(64, 145, 108, 0.08);
    border-radius: 999px;
}

.upc-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 112px 64px 78px;
}

.upc-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: #74c69d;
    text-transform: uppercase;
}

.upc-kicker-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: #74c69d;
}

.upc-kicker i {
    font-size: 15px;
    color: currentColor;
}

.upc-hero-title {
    margin: 0;
    max-width: 920px;
    font-size: clamp(44px, 8vw, 112px);
    font-weight: 950;
    line-height: 0.98;
    letter-spacing: -0.065em;
    color: #fff;
    word-break: keep-all;
}

.upc-hero-title span {
    color: #74c69d;
}

.upc-hero-subtitle {
    max-width: 720px;
    margin: 30px 0 54px;
    font-size: clamp(16px, 1.8vw, 21px);
    font-weight: 350;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
    word-break: keep-all;
}

.upc-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 38px;
}

.upc-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 1px;
    width: min(830px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.upc-hero-stat {
    min-height: 92px;
    padding: 18px 18px 16px;
    background: rgba(17, 17, 17, 0.9);
}

.upc-hero-stat span {
    display: block;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.36);
    white-space: nowrap;
}

.upc-hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    word-break: keep-all;
}

.upc-hero-actions,
.upc-cat-actions,
.upc-guide-actions,
.upc-apply-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.upc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 12px 20px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.upc-btn:hover {
    transform: translateY(-1px);
}

.upc-btn i {
    margin-right: 7px;
    font-size: 14px;
    line-height: 1;
}

.upc-btn-light {
    background: #fff;
    color: #111;
}

.upc-btn-light:hover {
    background: #74c69d;
    color: #111;
}

.upc-btn-dark {
    background: #111;
    color: #fff !important;
}

.upc-btn-dark:hover {
    background: #2d6a4f;
    color: #fff !important;
}

.upc-btn-outline-light {
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff !important;
    background: transparent;
}

.upc-btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
}

.upc-btn-outline-dark {
    border-color: rgba(17, 17, 17, 0.18);
    color: #111;
    background: transparent;
}

.upc-btn-outline-dark:hover {
    border-color: #111;
    background: #111;
}

.upc-section {
    padding: 104px 64px;
}

.upc-section-soft {
    background: #f5f5f0;
}

.upc-section-dark {
    background: #111;
}

.upc-section-head {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 54px;
}

.upc-section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.upc-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.18em;
    color: #2d6a4f;
    text-transform: uppercase;
}

.upc-section-label.light {
    color: #74c69d;
}

.upc-section-label.center {
    justify-content: center;
}

.upc-section-label i {
    font-size: 15px;
    color: currentColor;
}

.upc-section-label-line {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: currentColor;
}

.upc-section-title {
    margin: 0;
    font-size: clamp(31px, 4.3vw, 56px);
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: #111;
    word-break: keep-all;
}

.upc-section-title.light {
    color: #fff;
}

.upc-section-desc {
    max-width: 650px;
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #666;
    word-break: keep-all;
}

.upc-section-desc.light {
    color: rgba(255, 255, 255, 0.58);
}

.upc-icon-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #edf6f0;
    color: #2d6a4f;
    font-size: 20px;
    transition: all 0.2s ease;
}

.upc-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.upc-overview-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
}

.upc-overview-card:hover .upc-icon-chip,
.upc-check-card:hover .upc-icon-chip {
    background: #2d6a4f;
    color: #fff;
}

.upc-overview-card span {
    display: block;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: #999;
}

.upc-overview-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 23px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.04em;
    color: #111;
    word-break: keep-all;
}

.upc-overview-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #666;
    word-break: keep-all;
}

.upc-theme-copy {
    max-width: 940px;
    margin: 0;
    font-size: clamp(27px, 3.9vw, 52px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.045em;
    color: #111;
    word-break: keep-all;
}

.upc-theme-copy em {
    font-style: normal;
    color: #2d6a4f;
}

.upc-pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 42px;
}

.upc-pill-wrap span {
    padding: 9px 17px;
    border: 1px solid rgba(17, 17, 17, 0.13);
    background: rgba(255, 255, 255, 0.46);
    color: #555;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.upc-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(17, 17, 17, 0.08);
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.upc-cat-card {
    min-height: 100%;
    padding: 42px 34px;
    background: #fff;
    transition: background 0.25s ease, transform 0.25s ease;
}

.upc-cat-card:hover {
    background: #111;
    transform: translateY(-4px);
}

.upc-cat-card:hover h3,
.upc-cat-card:hover .upc-cat-desc,
.upc-cat-card:hover .upc-meta-row p {
    color: rgba(255, 255, 255, 0.9);
}

.upc-cat-card:hover .upc-cat-num,
.upc-cat-card:hover .upc-cat-badge,
.upc-cat-card:hover .upc-meta-row span {
    color: rgba(255, 255, 255, 0.56);
}

.upc-cat-card:hover .upc-cat-badge {
    border-color: rgba(255, 255, 255, 0.22);
}

.upc-cat-card:hover .upc-btn-dark {
    background: #40916c;
}

.upc-cat-card:hover .upc-btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff !important;
}

.upc-cat-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
}

.upc-cat-num {
    margin: 0;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.16em;
    color: #999;
}

.upc-cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 999px;
    border: 1px solid rgba(45, 106, 79, 0.18);
    background: #f5f5f0;
    color: #2d6a4f;
    font-size: 24px;
    transition: all 0.2s ease;
}

.upc-cat-card:hover .upc-cat-icon {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(116, 198, 157, 0.12);
    color: #74c69d;
}

.upc-cat-card h3 {
    margin: 0 0 10px;
    font-size: 31px;
    font-weight: 950;
    letter-spacing: -0.045em;
    color: #111;
    word-break: keep-all;
}

.upc-cat-badge {
    display: inline-flex;
    margin-bottom: 26px;
    padding: 6px 12px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    color: #777;
    font-size: 11px;
    font-weight: 800;
    word-break: keep-all;
}

.upc-cat-desc {
    min-height: 76px;
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    word-break: keep-all;
}

.upc-cat-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.upc-meta-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: start;
}

.upc-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 950;
    color: #999;
    white-space: nowrap;
}

.upc-meta-row span i {
    font-size: 12px;
    color: #2d6a4f;
}

.upc-cat-card:hover .upc-meta-row span i {
    color: #74c69d;
}

.upc-meta-row p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #444;
    word-break: keep-all;
}

.upc-notice-box {
    margin-top: 1px;
    padding: 24px 28px;
    background: #f5f5f0;
    border: 1px solid rgba(17, 17, 17, 0.08);
    font-size: 13px;
    line-height: 1.85;
    color: #666;
    word-break: keep-all;
}

.upc-timeline-list {
    border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.upc-timeline-row {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 38px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.upc-timeline-date {
    font-size: 14px;
    font-weight: 900;
    color: #888;
    word-break: keep-all;
}

.upc-timeline-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
    font-size: 17px;
    font-weight: 900;
    color: #111;
    word-break: keep-all;
}

.upc-timeline-title i {
    color: #2d6a4f;
    font-size: 18px;
    flex: 0 0 auto;
}

.upc-timeline-row.active .upc-timeline-date,
.upc-timeline-row.active .upc-timeline-title {
    color: #2d6a4f;
}

.upc-timeline-row p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    word-break: keep-all;
}

.upc-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.upc-guide-card {
    padding: 34px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.upc-guide-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 26px;
}

.upc-guide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    background: #111;
    color: #fff;
    font-size: 20px;
}

.upc-guide-head h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 950;
    line-height: 1.25;
    letter-spacing: -0.04em;
    color: #111;
    word-break: keep-all;
}

.upc-guide-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.upc-guide-list li {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    font-size: 14px;
    line-height: 1.65;
    color: #555;
}

.upc-guide-list strong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #111;
    font-weight: 900;
    white-space: nowrap;
}

.upc-guide-list strong i {
    color: #2d6a4f;
    font-size: 13px;
}

.upc-guide-list span {
    word-break: keep-all;
}

.upc-criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.upc-criteria-card {
    position: relative;
    min-height: 250px;
    padding: 40px 32px;
    background: #111;
}

.upc-criteria-card:hover {
    background: #1a1a1a;
}

.upc-criteria-card span {
    display: block;
    margin-bottom: 18px;
    font-size: 58px;
    font-weight: 950;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
}

.upc-criteria-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(116, 198, 157, 0.13);
    color: #74c69d;
    font-size: 22px;
}

.upc-criteria-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 950;
    color: #fff;
}

.upc-criteria-card em {
    position: absolute;
    top: 34px;
    right: 30px;
    padding: 6px 11px;
    background: rgba(116, 198, 157, 0.13);
    color: #74c69d;
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.upc-criteria-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
    word-break: keep-all;
}

.upc-prize-summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 18px;
    background: #f5f5f0;
    border: 1px solid rgba(45, 106, 79, 0.16);
    font-size: 15px;
    font-weight: 900;
    color: #111;
    word-break: keep-all;
}

.upc-prize-summary i {
    color: #2d6a4f;
    font-size: 18px;
}

.upc-scroll-guide {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 10px 14px;
    background: #edf6f0;
    border: 1px solid rgba(45, 106, 79, 0.18);
    color: #2d6a4f;
    font-size: 12px;
    font-weight: 850;
    text-align: center;
    word-break: keep-all;
}

.upc-scroll-guide i {
    font-size: 15px;
    flex: 0 0 auto;
}

.upc-prize-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(45, 106, 79, 0.22);
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.upc-prize-table-wrap::-webkit-scrollbar {
    height: 8px;
}

.upc-prize-table-wrap::-webkit-scrollbar-track {
    background: #edf6f0;
}

.upc-prize-table-wrap::-webkit-scrollbar-thumb {
    background: #2d6a4f;
    border-radius: 999px;
}

.upc-prize-table {
    width: 100%;
    min-width: 920px;
    margin: 0;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
}

.upc-prize-table th,
.upc-prize-table td {
    border: 1px solid rgba(45, 106, 79, 0.22);
    text-align: center;
    vertical-align: middle;
    word-break: keep-all;
    white-space: nowrap;
}

.upc-prize-table th {
    padding: 24px 14px;
    background: #2d6a4f;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.04em;
    color: #fff;
}

.upc-prize-table th:first-child {
    background: #1b4332;
}

.upc-prize-table th span {
    display: block;
    margin-top: 4px;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
}

.upc-prize-table td {
    padding: 22px 14px;
    background: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    color: #111;
}

.upc-prize-table .upc-prize-part {
    background: #f5f5f0;
    font-size: 23px;
    font-weight: 950;
    color: #111;
}

.upc-prize-table .upc-prize-total {
    background: #f8fbf9;
    font-size: 24px;
    font-weight: 950;
    color: #2d6a4f;
}

.upc-prize-table td[rowspan] {
    background: #f8fbf9;
    color: #2d6a4f;
    font-weight: 950;
}

.upc-prize-note-box {
    margin-top: 18px;
    padding: 20px 24px;
    background: #f5f5f0;
    border: 1px solid rgba(45, 106, 79, 0.12);
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    word-break: keep-all;
}

.upc-small-note {
    margin: 22px 0 0;
    font-size: 13px;
    line-height: 1.85;
    color: #777;
    word-break: keep-all;
}

.upc-small-note.light {
    color: rgba(255, 255, 255, 0.52);
}

.upc-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.upc-check-card {
    padding: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
}

.upc-check-card .upc-icon-chip {
    margin-bottom: 16px;
}

.upc-check-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 950;
    color: #111;
    word-break: keep-all;
}

.upc-check-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    word-break: keep-all;
}

.upc-apply {
    padding: 104px 64px;
    background: #2d6a4f;
    text-align: center;
}

.upc-apply-title {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -0.055em;
    color: #fff;
    word-break: keep-all;
}

.upc-apply-title i {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 42px;
    color: rgba(255, 255, 255, 0.82);
}

.upc-apply-sub {
    max-width: 620px;
    margin: 22px auto 42px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.75;
    word-break: keep-all;
}

.upc-apply-actions {
    justify-content: center;
}

.upc-apply-deadline {
    margin: 34px 0 0;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.64);
    word-break: keep-all;
}

@media (max-width: 991.98px) {
    .upc-nav {
        padding: 0 22px;
    }

    .upc-nav-menu {
        display: none;
    }

    .upc-hero-inner,
    .upc-section,
    .upc-apply {
        padding-left: 26px;
        padding-right: 26px;
    }

    .upc-hero-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .upc-hero-stats,
    .upc-overview-grid,
    .upc-category-grid,
    .upc-guide-grid,
    .upc-criteria-grid,
    .upc-check-grid {
        grid-template-columns: 1fr;
    }

    .upc-section-head-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .upc-timeline-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .upc-scroll-guide {
        display: flex;
    }
}

@media (max-width: 575.98px) {
    .upc-nav {
        min-height: 56px;
        padding: 0 18px;
    }

    .upc-nav-brand {
        font-size: 12px;
        line-height: 1.35;
    }

    .upc-hero {
        min-height: auto;
    }

    .upc-hero-inner {
        padding-top: 88px;
        padding-bottom: 62px;
    }

    .upc-hero-bg-text {
        right: -20vw;
        bottom: 8vh;
        font-size: 96px;
    }

    .upc-hero-title {
        font-size: clamp(39px, 11.5vw, 48px);
        line-height: 1.06;
        letter-spacing: -0.052em;
    }

    .upc-hero-subtitle {
        margin: 24px 0 36px;
        font-size: 15px;
        line-height: 1.75;
    }

    .upc-hero-actions,
    .upc-cat-actions,
    .upc-guide-actions,
    .upc-apply-actions {
        width: 100%;
    }

    .upc-btn {
        width: 100%;
        white-space: normal;
        line-height: 1.35;
        min-height: 46px;
    }

    .upc-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .upc-hero-stat {
        min-height: 88px;
        padding: 16px 14px;
    }

    .upc-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .upc-section-head {
        margin-bottom: 38px;
    }

    .upc-section-title {
        font-size: clamp(29px, 8.2vw, 36px);
        line-height: 1.18;
        letter-spacing: -0.045em;
    }

    .upc-section-desc {
        font-size: 14px;
        line-height: 1.75;
    }

    .upc-theme-copy {
        font-size: clamp(27px, 8vw, 34px);
        line-height: 1.32;
    }

    .upc-cat-card,
    .upc-guide-card,
    .upc-overview-card,
    .upc-check-card {
        padding: 28px 22px;
    }

    .upc-cat-visual {
        margin-bottom: 24px;
    }

    .upc-cat-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 21px;
    }

    .upc-cat-desc {
        min-height: auto;
    }

    .upc-meta-row {
        grid-template-columns: 58px 1fr;
    }

    .upc-guide-head {
        align-items: center;
    }

    .upc-guide-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 18px;
    }

    .upc-guide-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .upc-prize-summary {
        width: 100%;
        align-items: flex-start;
        font-size: 14px;
        line-height: 1.5;
    }

    .upc-prize-table {
        min-width: 860px;
    }

    .upc-prize-table th {
        padding: 18px 12px;
        font-size: 18px;
    }

    .upc-prize-table th span {
        font-size: 13px;
    }

    .upc-prize-table td {
        padding: 18px 12px;
        font-size: 18px;
    }

    .upc-prize-table .upc-prize-part {
        font-size: 19px;
    }

    .upc-apply {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .upc-apply-sub {
        font-size: 14px;
        line-height: 1.75;
    }
}

.upc-guide-grid {
    align-items: stretch;
}

.upc-guide-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.upc-guide-head {
    min-height: 50px;
}

.upc-guide-list {
    flex: 1;
    margin-bottom: 30px;
}

.upc-guide-list li {
    align-items: start;
}

.upc-guide-actions {
    margin-top: auto;
    align-items: center;
}

.upc-guide-actions .upc-btn {
    min-width: 156px;
}

@media (min-width: 992px) {
    .upc-guide-card {
        min-height: 420px;
    }

    .upc-guide-list {
        min-height: 210px;
    }
}

@media (max-width: 575.98px) {
    .upc-guide-card {
        min-height: auto;
    }

    .upc-guide-head {
        min-height: auto;
    }

    .upc-guide-list {
        min-height: auto;
        margin-bottom: 24px;
    }

    .upc-guide-actions {
        margin-top: 4px;
    }

    .upc-guide-actions .upc-btn {
        min-width: 0;
        width: 100%;
    }
}

/* 접수 부문 + 제출물 통합 섹션 */
.upc-category-grid-merged {
    gap: 16px;
    background: transparent;
    border: 0;
}

.upc-cat-card-merged {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.upc-cat-card-merged .upc-cat-meta {
    margin-bottom: 22px;
}

.upc-submit-box {
    margin: auto 0 28px;
    padding: 20px 20px 18px;
    background: #f8fbf9;
    border: 1px solid rgba(45, 106, 79, 0.16);
}

.upc-submit-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 950;
    color: #2d6a4f;
    word-break: keep-all;
}

.upc-submit-box-title i {
    font-size: 16px;
    color: currentColor;
}

.upc-submit-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px 0;
    border-top: 1px solid rgba(45, 106, 79, 0.12);
}

.upc-submit-row strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 4px 8px;
    background: #2d6a4f;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.upc-submit-row span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
    color: #333;
    word-break: keep-all;
}

.upc-submit-notice-box {
    margin-top: 18px;
}

.upc-submit-notice-box strong {
    color: #111;
    font-weight: 950;
}

/* hover 시 제출물 박스도 같이 반전 */
.upc-cat-card-merged:hover .upc-submit-box {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.upc-cat-card-merged:hover .upc-submit-box-title {
    color: #74c69d;
}

.upc-cat-card-merged:hover .upc-submit-row {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.upc-cat-card-merged:hover .upc-submit-row strong {
    background: #40916c;
    color: #fff;
}

.upc-cat-card-merged:hover .upc-submit-row span {
    color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 575.98px) {
    .upc-submit-box {
        padding: 18px 16px 16px;
    }

    .upc-submit-row {
        grid-template-columns: 56px 1fr;
        gap: 8px;
    }

    .upc-submit-row span {
        font-size: 12px;
    }
}

/* 마지막 접수 CTA - Hero형 임팩트 */
.upc-apply-impact {
    position: relative;
    overflow: hidden;
    padding: 118px 64px 108px;
    background: #111;
    text-align: center;
}

.upc-apply-bg-text {
    position: absolute;
    left: 50%;
    bottom: -2vw;
    transform: translateX(-50%);
    font-size: clamp(82px, 18vw, 250px);
    font-weight: 950;
    letter-spacing: -0.075em;
    line-height: 0.82;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    pointer-events: none;
}

.upc-apply-mark {
    position: absolute;
    top: 12%;
    right: 7%;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(116, 198, 157, 0.32);
    border-radius: 999px;
    pointer-events: none;
}

.upc-apply-mark span {
    display: block;
    width: 100%;
    height: 100%;
    border: 30px solid rgba(116, 198, 157, 0.07);
    border-radius: 999px;
}

.upc-apply-impact-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.upc-apply-impact-title {
    margin-top: 24px;
    font-size: clamp(42px, 6vw, 86px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.upc-apply-impact-title span {
    color: #74c69d;
}

.upc-apply-impact-sub {
    max-width: 720px;
    margin: 28px auto 34px;
    color: rgba(255, 255, 255, 0.68);
}

.upc-apply-impact-sub strong {
    color: #fff;
    font-weight: 850;
}

.upc-apply-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 820px;
    margin: 0 auto 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.upc-apply-info-card {
    min-height: 98px;
    padding: 20px 18px;
    background: rgba(17, 17, 17, 0.86);
}

.upc-apply-info-card span {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.42);
}

.upc-apply-info-card strong {
    display: block;
    font-size: clamp(18px, 2.3vw, 27px);
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: -0.035em;
    color: #fff;
}

.upc-apply-impact-actions {
    justify-content: center;
    margin-top: 0;
}

.upc-apply-impact-actions .upc-btn {
    min-width: 190px;
}

.upc-apply-impact-deadline {
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.58);
}

/* 모바일 대응 */
@media (max-width: 991.98px) {
    .upc-apply-impact {
        padding-left: 26px;
        padding-right: 26px;
    }

    .upc-apply-mark {
        right: -70px;
        width: 210px;
        height: 210px;
    }

    .upc-apply-info-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .upc-apply-info-card {
        min-height: auto;
        padding: 18px 16px;
    }
}

@media (max-width: 575.98px) {
    .upc-apply-impact {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .upc-apply-bg-text {
        bottom: 4vh;
        font-size: 96px;
    }

    .upc-apply-mark {
        top: 8%;
        right: -96px;
        width: 190px;
        height: 190px;
    }

    .upc-apply-mark span {
        border-width: 24px;
    }

    .upc-apply-impact-title {
        font-size: clamp(38px, 11vw, 48px);
        line-height: 1.08;
    }

    .upc-apply-impact-sub {
        margin-top: 24px;
        margin-bottom: 30px;
        font-size: 14px;
        line-height: 1.75;
    }

    .upc-apply-impact-actions .upc-btn {
        width: 100%;
        min-width: 0;
    }

    .upc-apply-impact-deadline {
        font-size: 12px;
        line-height: 1.7;
    }
}

.upc-category-grid-merged {
    align-items: stretch;
    gap: 18px;
    background: transparent;
    border: 0;
}

.upc-cat-card-merged {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 42px 34px 34px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
}

/* 설명/메타 영역 최소 높이 통일 */
.upc-cat-card-merged .upc-cat-desc {
    min-height: 78px;
    margin-bottom: 28px;
}

.upc-cat-card-merged .upc-cat-meta {
    min-height: 142px;
    margin-bottom: 24px;
}

/* 필수 제출물 박스 위치 통일 */
.upc-submit-box {
    margin: auto 0 24px;
    min-height: 178px;
    padding: 20px 20px 18px;
    background: #f8fbf9;
    border: 1px solid rgba(45, 106, 79, 0.16);
}

.upc-submit-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 950;
    color: #2d6a4f;
    word-break: keep-all;
}

.upc-submit-box-title i {
    font-size: 16px;
    color: currentColor;
}

.upc-submit-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(45, 106, 79, 0.12);
}

.upc-submit-row strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 5px 9px;
    background: #2d6a4f;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.upc-submit-row span {
    font-size: 13px;
    font-weight: 750;
    line-height: 1.55;
    color: #333;
    word-break: keep-all;
}

/* 접수/확인 버튼 레이아웃 완전 통일 */
.upc-cat-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 0;
}

.upc-cat-actions .upc-btn {
    width: 100%;
    min-height: 54px;
    padding: 14px 12px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
}

.upc-cat-actions .upc-btn i {
    margin-right: 7px;
    font-size: 15px;
}

/* 카드 hover 시 제출물 박스 반전 */
.upc-cat-card-merged:hover .upc-submit-box {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.upc-cat-card-merged:hover .upc-submit-box-title {
    color: #74c69d;
}

.upc-cat-card-merged:hover .upc-submit-row {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.upc-cat-card-merged:hover .upc-submit-row strong {
    background: #40916c;
    color: #fff;
}

.upc-cat-card-merged:hover .upc-submit-row span {
    color: rgba(255, 255, 255, 0.86);
}

/* 참가자 지원사항 */
.upc-support-block {
    margin-top: 28px;
    padding: 38px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.upc-support-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.upc-support-head h3 {
    margin: 16px 0 0;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -0.045em;
    color: #111;
    word-break: keep-all;
}

.upc-support-head p {
    max-width: 560px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    word-break: keep-all;
}

.upc-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.upc-support-card {
    position: relative;
    padding: 28px;
    background: #f8fbf9;
    border: 1px solid rgba(45, 106, 79, 0.14);
}

.upc-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #2d6a4f;
    color: #fff;
    font-size: 21px;
}

.upc-support-card strong {
    display: block;
    margin-bottom: 14px;
    font-size: 19px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.03em;
    color: #111;
    word-break: keep-all;
}

.upc-support-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
}

.upc-support-card li {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    word-break: keep-all;
}

.upc-submit-notice-box {
    margin-top: 18px;
}

.upc-submit-notice-box strong {
    color: #111;
    font-weight: 950;
}

/* 태블릿 이하 */
@media (max-width: 991.98px) {
    .upc-cat-card-merged .upc-cat-desc,
    .upc-cat-card-merged .upc-cat-meta,
    .upc-submit-box {
        min-height: auto;
    }

    .upc-support-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .upc-support-grid {
        grid-template-columns: 1fr;
    }
}

/* 모바일 */
@media (max-width: 575.98px) {
    .upc-category-grid-merged {
        gap: 14px;
    }

    .upc-cat-card-merged {
        padding: 30px 22px 24px;
    }

    .upc-submit-box {
        padding: 18px 16px 16px;
        margin-bottom: 18px;
    }

    .upc-submit-row {
        grid-template-columns: 56px 1fr;
        gap: 8px;
    }

    .upc-submit-row span {
        font-size: 12px;
    }

    .upc-cat-actions {
        grid-template-columns: 1fr;
    }

    .upc-cat-actions .upc-btn {
        min-height: 48px;
        font-size: 13px;
    }

    .upc-support-block {
        margin-top: 20px;
        padding: 26px 22px;
    }

    .upc-support-card {
        padding: 24px 20px;
    }

    .upc-support-card strong {
        font-size: 17px;
    }

    .upc-support-card li {
        font-size: 13px;
    }
}

.upc-overview-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.upc-overview-actions .upc-btn {
    min-width: 220px;
    min-height: 52px;
    font-size: 14px;
    font-weight: 950;
}

@media (max-width: 575.98px) {
    .upc-overview-actions {
        margin-top: 24px;
    }

    .upc-overview-actions .upc-btn {
        width: 100%;
        min-width: 0;
    }
}

.upc-overview-card strong {
    display: -webkit-box;
    margin-bottom: 10px;
    min-height: calc(1.35em * 2);
    font-size: 23px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.04em;
    color: #111;
    word-break: keep-all;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.upc-overview-card p {
    margin: 0;
    min-height: calc(1.65em * 3);
    font-size: 13px;
    line-height: 1.65;
    color: #666;
    word-break: keep-all;
}

@media (max-width: 991.98px) {
    .upc-overview-card strong,
    .upc-overview-card p {
        min-height: auto;
    }

    .upc-overview-card strong {
        margin-bottom: 8px;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .upc-overview-card span {
        margin-bottom: 12px;
    }
}

.upc-category-grid-merged {
    align-items: stretch;
    gap: 18px;
    background: transparent;
    border: 0;
}

.upc-cat-card-merged {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 42px 34px 34px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
}

/* 설명/메타 영역 최소 높이 통일 */
.upc-cat-card-merged .upc-cat-desc {
    min-height: 78px;
    margin-bottom: 28px;
}

.upc-cat-card-merged .upc-cat-meta {
    min-height: 142px;
    margin-bottom: 24px;
}

/* 필수 제출물 박스 위치 통일 */
.upc-submit-box {
    margin: auto 0 24px;
    min-height: 178px;
    padding: 20px 20px 18px;
    background: #f8fbf9;
    border: 1px solid rgba(45, 106, 79, 0.16);
}

.upc-submit-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 950;
    color: #2d6a4f;
    word-break: keep-all;
}

.upc-submit-box-title i {
    font-size: 16px;
    color: currentColor;
}

.upc-submit-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(45, 106, 79, 0.12);
}

.upc-submit-row strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 5px 9px;
    background: #2d6a4f;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.upc-submit-row span {
    font-size: 13px;
    font-weight: 750;
    line-height: 1.55;
    color: #333;
    word-break: keep-all;
}

/* 접수/확인 버튼 레이아웃 완전 통일 */
.upc-cat-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 0;
}

.upc-cat-actions .upc-btn {
    width: 100%;
    min-height: 54px;
    padding: 14px 12px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
}

.upc-cat-actions .upc-btn i {
    margin-right: 7px;
    font-size: 15px;
}

/* 카드 hover 시 제출물 박스 반전 */
.upc-cat-card-merged:hover .upc-submit-box {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.upc-cat-card-merged:hover .upc-submit-box-title {
    color: #74c69d;
}

.upc-cat-card-merged:hover .upc-submit-row {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.upc-cat-card-merged:hover .upc-submit-row strong {
    background: #40916c;
    color: #fff;
}

.upc-cat-card-merged:hover .upc-submit-row span {
    color: rgba(255, 255, 255, 0.86);
}

/* 참가자 지원사항 */
.upc-support-block {
    margin-top: 28px;
    padding: 38px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.upc-support-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.upc-support-head h3 {
    margin: 16px 0 0;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -0.045em;
    color: #111;
    word-break: keep-all;
}

.upc-support-head p {
    max-width: 560px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    word-break: keep-all;
}

.upc-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.upc-support-card {
    position: relative;
    padding: 28px;
    background: #f8fbf9;
    border: 1px solid rgba(45, 106, 79, 0.14);
}

.upc-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #2d6a4f;
    color: #fff;
    font-size: 21px;
}

.upc-support-card strong {
    display: block;
    margin-bottom: 14px;
    font-size: 19px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.03em;
    color: #111;
    word-break: keep-all;
}

.upc-support-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
}

.upc-support-card li {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    word-break: keep-all;
}

.upc-submit-notice-box {
    margin-top: 18px;
}

.upc-submit-notice-box strong {
    color: #111;
    font-weight: 950;
}

/* 태블릿 이하 */
@media (max-width: 991.98px) {
    .upc-cat-card-merged .upc-cat-desc,
    .upc-cat-card-merged .upc-cat-meta,
    .upc-submit-box {
        min-height: auto;
    }

    .upc-support-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .upc-support-grid {
        grid-template-columns: 1fr;
    }
}

/* 모바일 */
@media (max-width: 575.98px) {
    .upc-category-grid-merged {
        gap: 14px;
    }

    .upc-cat-card-merged {
        padding: 30px 22px 24px;
    }

    .upc-submit-box {
        padding: 18px 16px 16px;
        margin-bottom: 18px;
    }

    .upc-submit-row {
        grid-template-columns: 56px 1fr;
        gap: 8px;
    }

    .upc-submit-row span {
        font-size: 12px;
    }

    .upc-cat-actions {
        grid-template-columns: 1fr;
    }

    .upc-cat-actions .upc-btn {
        min-height: 48px;
        font-size: 13px;
    }

    .upc-support-block {
        margin-top: 20px;
        padding: 26px 22px;
    }

    .upc-support-card {
        padding: 24px 20px;
    }

    .upc-support-card strong {
        font-size: 17px;
    }

    .upc-support-card li {
        font-size: 13px;
    }
}

.upc-overview-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.upc-overview-actions .upc-btn {
    min-width: 220px;
    min-height: 52px;
    font-size: 14px;
    font-weight: 950;
}

@media (max-width: 575.98px) {
    .upc-overview-actions {
        margin-top: 24px;
    }

    .upc-overview-actions .upc-btn {
        width: 100%;
        min-width: 0;
    }
}

.upc-overview-card strong {
    display: -webkit-box;
    margin-bottom: 10px;
    min-height: calc(1.35em * 2);
    font-size: 23px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.04em;
    color: #111;
    word-break: keep-all;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.upc-overview-card p {
    margin: 0;
    min-height: calc(1.65em * 3);
    font-size: 13px;
    line-height: 1.65;
    color: #666;
    word-break: keep-all;
}

@media (max-width: 991.98px) {
    .upc-overview-card strong,
    .upc-overview-card p {
        min-height: auto;
    }

    .upc-overview-card strong {
        margin-bottom: 8px;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .upc-overview-card span {
        margin-bottom: 12px;
    }
}

/* 오시는 길 */
.upc-location-map {
    width: 100%;
    margin-bottom: 42px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
    overflow: hidden;
}

.upc-location-map img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.upc-location-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.upc-location-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.upc-location-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.upc-location-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
}

.upc-location-title i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    background: #edf6f0;
    color: #2d6a4f;
    font-size: 17px;
}

.upc-location-title strong {
    font-size: 19px;
    font-weight: 950;
    letter-spacing: -0.035em;
    word-break: keep-all;
}

.upc-location-content > strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 950;
    line-height: 1.5;
    color: #555;
    word-break: keep-all;
}

.upc-location-content > strong.mt {
    margin-top: 18px;
}

.upc-location-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.8;
    color: #777;
    word-break: keep-all;
}

.upc-bus-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.upc-bus-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.55;
    color: #666;
    word-break: keep-all;
}

.upc-bus-list strong {
    flex: 0 0 auto;
    margin-right: 2px;
    font-weight: 900;
    color: #555;
}

.bus-dot {
    width: 9px;
    height: 9px;
    margin-top: 6px;
    flex: 0 0 9px;
    border-radius: 999px;
}

.bus-blue {
    background: #0d6efd;
}

.bus-green {
    background: #52b61f;
}

.bus-red {
    background: #e03131;
}

.bus-yellow {
    background: #f2b705;
}

.upc-location-actions {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.upc-location-actions .upc-btn {
    min-width: 220px;
    min-height: 52px;
    font-size: 14px;
    font-weight: 950;
}

/* 태블릿 이하 */
@media (max-width: 991.98px) {
    .upc-location-map {
        margin-bottom: 34px;
    }

    .upc-location-map img {
        height: 260px;
    }

    .upc-location-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .upc-location-title {
        align-items: center;
    }
}

/* 모바일 */
@media (max-width: 575.98px) {
    .upc-location-map {
        margin-bottom: 28px;
    }

    .upc-location-map img {
        height: 210px;
    }

    .upc-location-grid {
        gap: 24px;
    }

    .upc-location-row {
        padding-bottom: 24px;
    }

    .upc-location-title strong {
        font-size: 18px;
    }

    .upc-location-content > strong {
        font-size: 15px;
    }

    .upc-location-content p,
    .upc-bus-list li {
        font-size: 13px;
        line-height: 1.75;
    }

    .upc-bus-list li {
        display: grid;
        grid-template-columns: 10px 70px 1fr;
        gap: 7px;
    }

    .bus-dot {
        margin-top: 6px;
    }

    .upc-location-actions {
        margin-top: 28px;
    }

    .upc-location-actions .upc-btn {
        width: 100%;
        min-width: 0;
    }
}

/* 문의하기 섹션 */
.upc-contact-section {
    background: #fff;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

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

.upc-contact-card {
    padding: 30px 28px;
    background: #f8fbf9;
    border: 1px solid rgba(45, 106, 79, 0.14);
}

.upc-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: #2d6a4f;
    color: #fff;
    font-size: 21px;
}

.upc-contact-card span {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.14em;
    color: #777;
}

.upc-contact-card a {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: 100%;
    color: #111;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.03em;
    word-break: break-all;
}

.upc-contact-card a:hover {
    color: #2d6a4f;
}

.upc-contact-chip {
    gap: 8px;
    padding: 11px 16px;
    background: #111;
    color: #fff !important;
    font-size: 14px !important;
    border-radius: 999px;
    word-break: keep-all !important;
    white-space: nowrap;
}

.upc-contact-chip:hover {
    background: #2d6a4f;
    color: #fff !important;
}

.upc-contact-chip i {
    font-size: 13px;
}

.upc-support-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.upc-support-card ul {
    margin-bottom: 24px;
}

.upc-support-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.upc-support-actions .upc-btn {
    width: 100%;
}

.upc-support-actions .upc-btn-outline-dark {
    background: #fff;
}

.upc-support-card:hover .upc-support-actions .upc-btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #323232;
}

.upc-page {
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: #111;
    background: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.upc-page * {
    box-sizing: border-box;
}

.upc-page a {
    text-decoration: none;
}

.upc-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.upc-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 62px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(14px);
}

.upc-nav-brand {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #111;
    word-break: keep-all;
}

.upc-nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.upc-nav-menu a {
    font-size: 12px;
    font-weight: 750;
    color: #777;
    white-space: nowrap;
}

.upc-nav-menu a:hover {
    color: #111;
}

.upc-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    background: #111;
    overflow: hidden;
}

.upc-hero-bg-text {
    position: absolute;
    right: -2vw;
    bottom: 4vh;
    font-size: clamp(76px, 15vw, 220px);
    font-weight: 950;
    letter-spacing: -0.075em;
    color: rgba(255, 255, 255, 0.035);
    line-height: 0.82;
    white-space: nowrap;
}

.upc-hero-mark {
    position: absolute;
    top: 12%;
    right: 8%;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(64, 145, 108, 0.36);
    border-radius: 999px;
}

.upc-hero-mark span {
    display: block;
    width: 100%;
    height: 100%;
    border: 34px solid rgba(64, 145, 108, 0.08);
    border-radius: 999px;
}

.upc-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 112px 64px 78px;
}

.upc-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: #74c69d;
    text-transform: uppercase;
}

.upc-kicker-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: #74c69d;
}

.upc-kicker i {
    font-size: 15px;
    color: currentColor;
}

.upc-hero-title {
    margin: 0;
    max-width: 920px;
    font-size: clamp(44px, 8vw, 112px);
    font-weight: 950;
    line-height: 0.98;
    letter-spacing: -0.065em;
    color: #fff;
    word-break: keep-all;
}

.upc-hero-title span {
    color: #74c69d;
}

.upc-hero-subtitle {
    max-width: 720px;
    margin: 30px 0 54px;
    font-size: clamp(16px, 1.8vw, 21px);
    font-weight: 350;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
    word-break: keep-all;
}

.upc-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 38px;
}

.upc-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 1px;
    width: min(830px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.upc-hero-stat {
    min-height: 92px;
    padding: 18px 18px 16px;
    background: rgba(17, 17, 17, 0.9);
}

.upc-hero-stat span {
    display: block;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.36);
    white-space: nowrap;
}

.upc-hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    word-break: keep-all;
}

.upc-hero-actions,
.upc-cat-actions,
.upc-guide-actions,
.upc-apply-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.upc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 12px 20px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.upc-btn:hover {
    transform: translateY(-1px);
}

.upc-btn i {
    margin-right: 7px;
    font-size: 14px;
    line-height: 1;
}

.upc-btn-light {
    background: #fff;
    color: #111;
}

.upc-btn-light:hover {
    background: #74c69d;
    color: #111;
}

.upc-btn-dark {
    background: #111;
    color: #fff !important;
}

.upc-btn-dark:hover {
    background: #2d6a4f;
    color: #fff !important;
}

.upc-btn-outline-light {
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff !important;
    background: transparent;
}

.upc-btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
}

.upc-btn-outline-dark {
    border-color: rgba(17, 17, 17, 0.18);
    color: #111;
    background: transparent;
}

.upc-btn-outline-dark:hover {
    border-color: #111;
    background: #111;
}

.upc-section {
    padding: 104px 64px;
}

.upc-section-soft {
    background: #f5f5f0;
}

.upc-section-dark {
    background: #111;
}

.upc-section-head {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 54px;
}

.upc-section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.upc-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.18em;
    color: #2d6a4f;
    text-transform: uppercase;
}

.upc-section-label.light {
    color: #74c69d;
}

.upc-section-label.center {
    justify-content: center;
}

.upc-section-label i {
    font-size: 15px;
    color: currentColor;
}

.upc-section-label-line {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: currentColor;
}

.upc-section-title {
    margin: 0;
    font-size: clamp(31px, 4.3vw, 56px);
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: #111;
    word-break: keep-all;
}

.upc-section-title.light {
    color: #fff;
}

.upc-section-desc {
    max-width: 650px;
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #666;
    word-break: keep-all;
}

.upc-section-desc.light {
    color: rgba(255, 255, 255, 0.58);
}

.upc-icon-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #edf6f0;
    color: #2d6a4f;
    font-size: 20px;
    transition: all 0.2s ease;
}

.upc-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.upc-overview-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
}

.upc-overview-card:hover .upc-icon-chip,
.upc-check-card:hover .upc-icon-chip {
    background: #2d6a4f;
    color: #fff;
}

.upc-overview-card span {
    display: block;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: #999;
}

.upc-overview-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 23px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.04em;
    color: #111;
    word-break: keep-all;
}

.upc-overview-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #666;
    word-break: keep-all;
}

.upc-theme-copy {
    max-width: 940px;
    margin: 0;
    font-size: clamp(27px, 3.9vw, 52px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.045em;
    color: #111;
    word-break: keep-all;
}

.upc-theme-copy em {
    font-style: normal;
    color: #2d6a4f;
}

.upc-pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 42px;
}

.upc-pill-wrap span {
    padding: 9px 17px;
    border: 1px solid rgba(17, 17, 17, 0.13);
    background: rgba(255, 255, 255, 0.46);
    color: #555;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.upc-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(17, 17, 17, 0.08);
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.upc-cat-card {
    min-height: 100%;
    padding: 42px 34px;
    background: #fff;
    transition: background 0.25s ease, transform 0.25s ease;
}

.upc-cat-card:hover {
    background: #111;
    transform: translateY(-4px);
}

.upc-cat-card:hover h3,
.upc-cat-card:hover .upc-cat-desc,
.upc-cat-card:hover .upc-meta-row p {
    color: rgba(255, 255, 255, 0.9);
}

.upc-cat-card:hover .upc-cat-num,
.upc-cat-card:hover .upc-cat-badge,
.upc-cat-card:hover .upc-meta-row span {
    color: rgba(255, 255, 255, 0.56);
}

.upc-cat-card:hover .upc-cat-badge {
    border-color: rgba(255, 255, 255, 0.22);
}

.upc-cat-card:hover .upc-btn-dark {
    background: #40916c;
}

.upc-cat-card:hover .upc-btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff !important;
}

.upc-cat-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
}

.upc-cat-num {
    margin: 0;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.16em;
    color: #999;
}

.upc-cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 999px;
    border: 1px solid rgba(45, 106, 79, 0.18);
    background: #f5f5f0;
    color: #2d6a4f;
    font-size: 24px;
    transition: all 0.2s ease;
}

.upc-cat-card:hover .upc-cat-icon {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(116, 198, 157, 0.12);
    color: #74c69d;
}

.upc-cat-card h3 {
    margin: 0 0 10px;
    font-size: 31px;
    font-weight: 950;
    letter-spacing: -0.045em;
    color: #111;
    word-break: keep-all;
}

.upc-cat-badge {
    display: inline-flex;
    margin-bottom: 26px;
    padding: 6px 12px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    color: #777;
    font-size: 11px;
    font-weight: 800;
    word-break: keep-all;
}

.upc-cat-desc {
    min-height: 76px;
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    word-break: keep-all;
}

.upc-cat-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.upc-meta-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: start;
}

.upc-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 950;
    color: #999;
    white-space: nowrap;
}

.upc-meta-row span i {
    font-size: 12px;
    color: #2d6a4f;
}

.upc-cat-card:hover .upc-meta-row span i {
    color: #74c69d;
}

.upc-meta-row p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #444;
    word-break: keep-all;
}

.upc-notice-box {
    margin-top: 1px;
    padding: 24px 28px;
    background: #f5f5f0;
    border: 1px solid rgba(17, 17, 17, 0.08);
    font-size: 13px;
    line-height: 1.85;
    color: #666;
    word-break: keep-all;
}

.upc-timeline-list {
    border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.upc-timeline-row {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 38px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.upc-timeline-date {
    font-size: 14px;
    font-weight: 900;
    color: #888;
    word-break: keep-all;
}

.upc-timeline-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
    font-size: 17px;
    font-weight: 900;
    color: #111;
    word-break: keep-all;
}

.upc-timeline-title i {
    color: #2d6a4f;
    font-size: 18px;
    flex: 0 0 auto;
}

.upc-timeline-row.active .upc-timeline-date,
.upc-timeline-row.active .upc-timeline-title {
    color: #2d6a4f;
}

.upc-timeline-row p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    word-break: keep-all;
}

.upc-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.upc-guide-card {
    padding: 34px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.upc-guide-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 26px;
}

.upc-guide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    background: #111;
    color: #fff;
    font-size: 20px;
}

.upc-guide-head h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 950;
    line-height: 1.25;
    letter-spacing: -0.04em;
    color: #111;
    word-break: keep-all;
}

.upc-guide-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.upc-guide-list li {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    font-size: 14px;
    line-height: 1.65;
    color: #555;
}

.upc-guide-list strong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #111;
    font-weight: 900;
    white-space: nowrap;
}

.upc-guide-list strong i {
    color: #2d6a4f;
    font-size: 13px;
}

.upc-guide-list span {
    word-break: keep-all;
}

.upc-criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.upc-criteria-card {
    position: relative;
    min-height: 250px;
    padding: 40px 32px;
    background: #111;
}

.upc-criteria-card:hover {
    background: #1a1a1a;
}

.upc-criteria-card span {
    display: block;
    margin-bottom: 18px;
    font-size: 58px;
    font-weight: 950;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
}

.upc-criteria-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(116, 198, 157, 0.13);
    color: #74c69d;
    font-size: 22px;
}

.upc-criteria-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 950;
    color: #fff;
}

.upc-criteria-card em {
    position: absolute;
    top: 34px;
    right: 30px;
    padding: 6px 11px;
    background: rgba(116, 198, 157, 0.13);
    color: #74c69d;
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.upc-criteria-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
    word-break: keep-all;
}

.upc-prize-summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 18px;
    background: #f5f5f0;
    border: 1px solid rgba(45, 106, 79, 0.16);
    font-size: 15px;
    font-weight: 900;
    color: #111;
    word-break: keep-all;
}

.upc-prize-summary i {
    color: #2d6a4f;
    font-size: 18px;
}

.upc-scroll-guide {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 10px 14px;
    background: #edf6f0;
    border: 1px solid rgba(45, 106, 79, 0.18);
    color: #2d6a4f;
    font-size: 12px;
    font-weight: 850;
    text-align: center;
    word-break: keep-all;
}

.upc-scroll-guide i {
    font-size: 15px;
    flex: 0 0 auto;
}

.upc-prize-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(45, 106, 79, 0.22);
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.upc-prize-table-wrap::-webkit-scrollbar {
    height: 8px;
}

.upc-prize-table-wrap::-webkit-scrollbar-track {
    background: #edf6f0;
}

.upc-prize-table-wrap::-webkit-scrollbar-thumb {
    background: #2d6a4f;
    border-radius: 999px;
}

.upc-prize-table {
    width: 100%;
    min-width: 920px;
    margin: 0;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
}

.upc-prize-table th,
.upc-prize-table td {
    border: 1px solid rgba(45, 106, 79, 0.22);
    text-align: center;
    vertical-align: middle;
    word-break: keep-all;
    white-space: nowrap;
}

.upc-prize-table th {
    padding: 24px 14px;
    background: #2d6a4f;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.04em;
    color: #fff;
}

.upc-prize-table th:first-child {
    background: #1b4332;
}

.upc-prize-table th span {
    display: block;
    margin-top: 4px;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
}

.upc-prize-table td {
    padding: 22px 14px;
    background: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    color: #111;
}

.upc-prize-table .upc-prize-part {
    background: #f5f5f0;
    font-size: 23px;
    font-weight: 950;
    color: #111;
}

.upc-prize-table .upc-prize-total {
    background: #f8fbf9;
    font-size: 24px;
    font-weight: 950;
    color: #2d6a4f;
}

.upc-prize-table td[rowspan] {
    background: #f8fbf9;
    color: #2d6a4f;
    font-weight: 950;
}

.upc-prize-note-box {
    margin-top: 18px;
    padding: 20px 24px;
    background: #f5f5f0;
    border: 1px solid rgba(45, 106, 79, 0.12);
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    word-break: keep-all;
}

.upc-small-note {
    margin: 22px 0 0;
    font-size: 13px;
    line-height: 1.85;
    color: #777;
    word-break: keep-all;
}

.upc-small-note.light {
    color: rgba(255, 255, 255, 0.52);
}

.upc-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.upc-check-card {
    padding: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
}

.upc-check-card .upc-icon-chip {
    margin-bottom: 16px;
}

.upc-check-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 950;
    color: #111;
    word-break: keep-all;
}

.upc-check-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    word-break: keep-all;
}

.upc-apply {
    padding: 104px 64px;
    background: #2d6a4f;
    text-align: center;
}

.upc-apply-title {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -0.055em;
    color: #fff;
    word-break: keep-all;
}

.upc-apply-title i {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 42px;
    color: rgba(255, 255, 255, 0.82);
}

.upc-apply-sub {
    max-width: 620px;
    margin: 22px auto 42px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.75;
    word-break: keep-all;
}

.upc-apply-actions {
    justify-content: center;
}

.upc-apply-deadline {
    margin: 34px 0 0;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.64);
    word-break: keep-all;
}

@media (max-width: 991.98px) {
    .upc-nav {
        padding: 0 22px;
    }

    .upc-nav-menu {
        display: none;
    }

    .upc-hero-inner,
    .upc-section,
    .upc-apply {
        padding-left: 26px;
        padding-right: 26px;
    }

    .upc-hero-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .upc-hero-stats,
    .upc-overview-grid,
    .upc-category-grid,
    .upc-guide-grid,
    .upc-criteria-grid,
    .upc-check-grid {
        grid-template-columns: 1fr;
    }

    .upc-section-head-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .upc-timeline-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .upc-scroll-guide {
        display: flex;
    }
}

@media (max-width: 575.98px) {
    .upc-nav {
        min-height: 56px;
        padding: 0 18px;
    }

    .upc-nav-brand {
        font-size: 12px;
        line-height: 1.35;
    }

    .upc-hero {
        min-height: auto;
    }

    .upc-hero-inner {
        padding-top: 88px;
        padding-bottom: 62px;
    }

    .upc-hero-bg-text {
        right: -20vw;
        bottom: 8vh;
        font-size: 96px;
    }

    .upc-hero-title {
        font-size: clamp(39px, 11.5vw, 48px);
        line-height: 1.06;
        letter-spacing: -0.052em;
    }

    .upc-hero-subtitle {
        margin: 24px 0 36px;
        font-size: 15px;
        line-height: 1.75;
    }

    .upc-hero-actions,
    .upc-cat-actions,
    .upc-guide-actions,
    .upc-apply-actions {
        width: 100%;
    }

    .upc-btn {
        width: 100%;
        white-space: normal;
        line-height: 1.35;
        min-height: 46px;
    }

    .upc-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .upc-hero-stat {
        min-height: 88px;
        padding: 16px 14px;
    }

    .upc-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .upc-section-head {
        margin-bottom: 38px;
    }

    .upc-section-title {
        font-size: clamp(29px, 8.2vw, 36px);
        line-height: 1.18;
        letter-spacing: -0.045em;
    }

    .upc-section-desc {
        font-size: 14px;
        line-height: 1.75;
    }

    .upc-theme-copy {
        font-size: clamp(27px, 8vw, 34px);
        line-height: 1.32;
    }

    .upc-cat-card,
    .upc-guide-card,
    .upc-overview-card,
    .upc-check-card {
        padding: 28px 22px;
    }

    .upc-cat-visual {
        margin-bottom: 24px;
    }

    .upc-cat-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 21px;
    }

    .upc-cat-desc {
        min-height: auto;
    }

    .upc-meta-row {
        grid-template-columns: 58px 1fr;
    }

    .upc-guide-head {
        align-items: center;
    }

    .upc-guide-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 18px;
    }

    .upc-guide-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .upc-prize-summary {
        width: 100%;
        align-items: flex-start;
        font-size: 14px;
        line-height: 1.5;
    }

    .upc-prize-table {
        min-width: 860px;
    }

    .upc-prize-table th {
        padding: 18px 12px;
        font-size: 18px;
    }

    .upc-prize-table th span {
        font-size: 13px;
    }

    .upc-prize-table td {
        padding: 18px 12px;
        font-size: 18px;
    }

    .upc-prize-table .upc-prize-part {
        font-size: 19px;
    }

    .upc-apply {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .upc-apply-sub {
        font-size: 14px;
        line-height: 1.75;
    }
}

.upc-guide-grid {
    align-items: stretch;
}

.upc-guide-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.upc-guide-head {
    min-height: 50px;
}

.upc-guide-list {
    flex: 1;
    margin-bottom: 30px;
}

.upc-guide-list li {
    align-items: start;
}

.upc-guide-actions {
    margin-top: auto;
    align-items: center;
}

.upc-guide-actions .upc-btn {
    min-width: 156px;
}

@media (min-width: 992px) {
    .upc-guide-card {
        min-height: 420px;
    }

    .upc-guide-list {
        min-height: 210px;
    }
}

@media (max-width: 575.98px) {
    .upc-guide-card {
        min-height: auto;
    }

    .upc-guide-head {
        min-height: auto;
    }

    .upc-guide-list {
        min-height: auto;
        margin-bottom: 24px;
    }

    .upc-guide-actions {
        margin-top: 4px;
    }

    .upc-guide-actions .upc-btn {
        min-width: 0;
        width: 100%;
    }
}

/* 접수 부문 + 제출물 통합 섹션 */
.upc-category-grid-merged {
    gap: 16px;
    background: transparent;
    border: 0;
}

.upc-cat-card-merged {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.upc-cat-card-merged .upc-cat-meta {
    margin-bottom: 22px;
}

.upc-submit-box {
    margin: auto 0 28px;
    padding: 20px 20px 18px;
    background: #f8fbf9;
    border: 1px solid rgba(45, 106, 79, 0.16);
}

.upc-submit-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 950;
    color: #2d6a4f;
    word-break: keep-all;
}

.upc-submit-box-title i {
    font-size: 16px;
    color: currentColor;
}

.upc-submit-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px 0;
    border-top: 1px solid rgba(45, 106, 79, 0.12);
}

.upc-submit-row strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 4px 8px;
    background: #2d6a4f;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.upc-submit-row span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
    color: #333;
    word-break: keep-all;
}

.upc-submit-notice-box {
    margin-top: 18px;
}

.upc-submit-notice-box strong {
    color: #111;
    font-weight: 950;
}

/* hover 시 제출물 박스도 같이 반전 */
.upc-cat-card-merged:hover .upc-submit-box {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.upc-cat-card-merged:hover .upc-submit-box-title {
    color: #74c69d;
}

.upc-cat-card-merged:hover .upc-submit-row {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.upc-cat-card-merged:hover .upc-submit-row strong {
    background: #40916c;
    color: #fff;
}

.upc-cat-card-merged:hover .upc-submit-row span {
    color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 575.98px) {
    .upc-submit-box {
        padding: 18px 16px 16px;
    }

    .upc-submit-row {
        grid-template-columns: 56px 1fr;
        gap: 8px;
    }

    .upc-submit-row span {
        font-size: 12px;
    }
}

/* 마지막 접수 CTA - Hero형 임팩트 */
.upc-apply-impact {
    position: relative;
    overflow: hidden;
    padding: 118px 64px 108px;
    background: #111;
    text-align: center;
}

.upc-apply-bg-text {
    position: absolute;
    left: 50%;
    bottom: -2vw;
    transform: translateX(-50%);
    font-size: clamp(82px, 18vw, 250px);
    font-weight: 950;
    letter-spacing: -0.075em;
    line-height: 0.82;
    color: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    pointer-events: none;
}

.upc-apply-mark {
    position: absolute;
    top: 12%;
    right: 7%;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(116, 198, 157, 0.32);
    border-radius: 999px;
    pointer-events: none;
}

.upc-apply-mark span {
    display: block;
    width: 100%;
    height: 100%;
    border: 30px solid rgba(116, 198, 157, 0.07);
    border-radius: 999px;
}

.upc-apply-impact-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.upc-apply-impact-title {
    margin-top: 24px;
    font-size: clamp(42px, 6vw, 86px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.upc-apply-impact-title span {
    color: #74c69d;
}

.upc-apply-impact-sub {
    max-width: 720px;
    margin: 28px auto 34px;
    color: rgba(255, 255, 255, 0.68);
}

.upc-apply-impact-sub strong {
    color: #fff;
    font-weight: 850;
}

.upc-apply-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 820px;
    margin: 0 auto 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.upc-apply-info-card {
    min-height: 98px;
    padding: 20px 18px;
    background: rgba(17, 17, 17, 0.86);
}

.upc-apply-info-card span {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.42);
}

.upc-apply-info-card strong {
    display: block;
    font-size: clamp(18px, 2.3vw, 27px);
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: -0.035em;
    color: #fff;
}

.upc-apply-impact-actions {
    justify-content: center;
    margin-top: 0;
}

.upc-apply-impact-actions .upc-btn {
    min-width: 190px;
}

.upc-apply-impact-deadline {
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.58);
}

/* 모바일 대응 */
@media (max-width: 991.98px) {
    .upc-apply-impact {
        padding-left: 26px;
        padding-right: 26px;
    }

    .upc-apply-mark {
        right: -70px;
        width: 210px;
        height: 210px;
    }

    .upc-apply-info-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .upc-apply-info-card {
        min-height: auto;
        padding: 18px 16px;
    }
}

@media (max-width: 575.98px) {
    .upc-apply-impact {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .upc-apply-bg-text {
        bottom: 4vh;
        font-size: 96px;
    }

    .upc-apply-mark {
        top: 8%;
        right: -96px;
        width: 190px;
        height: 190px;
    }

    .upc-apply-mark span {
        border-width: 24px;
    }

    .upc-apply-impact-title {
        font-size: clamp(38px, 11vw, 48px);
        line-height: 1.08;
    }

    .upc-apply-impact-sub {
        margin-top: 24px;
        margin-bottom: 30px;
        font-size: 14px;
        line-height: 1.75;
    }

    .upc-apply-impact-actions .upc-btn {
        width: 100%;
        min-width: 0;
    }

    .upc-apply-impact-deadline {
        font-size: 12px;
        line-height: 1.7;
    }
}

.upc-category-grid-merged {
    align-items: stretch;
    gap: 18px;
    background: transparent;
    border: 0;
}

.upc-cat-card-merged {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 42px 34px 34px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
}

/* 설명/메타 영역 최소 높이 통일 */
.upc-cat-card-merged .upc-cat-desc {
    min-height: 78px;
    margin-bottom: 28px;
}

.upc-cat-card-merged .upc-cat-meta {
    min-height: 142px;
    margin-bottom: 24px;
}

/* 필수 제출물 박스 위치 통일 */
.upc-submit-box {
    margin: auto 0 24px;
    min-height: 178px;
    padding: 20px 20px 18px;
    background: #f8fbf9;
    border: 1px solid rgba(45, 106, 79, 0.16);
}

.upc-submit-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 950;
    color: #2d6a4f;
    word-break: keep-all;
}

.upc-submit-box-title i {
    font-size: 16px;
    color: currentColor;
}

.upc-submit-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(45, 106, 79, 0.12);
}

.upc-submit-row strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 5px 9px;
    background: #2d6a4f;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.upc-submit-row span {
    font-size: 13px;
    font-weight: 750;
    line-height: 1.55;
    color: #333;
    word-break: keep-all;
}

/* 접수/확인 버튼 레이아웃 완전 통일 */
.upc-cat-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 0;
}

.upc-cat-actions .upc-btn {
    width: 100%;
    min-height: 54px;
    padding: 14px 12px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
}

.upc-cat-actions .upc-btn i {
    margin-right: 7px;
    font-size: 15px;
}

/* 카드 hover 시 제출물 박스 반전 */
.upc-cat-card-merged:hover .upc-submit-box {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.upc-cat-card-merged:hover .upc-submit-box-title {
    color: #74c69d;
}

.upc-cat-card-merged:hover .upc-submit-row {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.upc-cat-card-merged:hover .upc-submit-row strong {
    background: #40916c;
    color: #fff;
}

.upc-cat-card-merged:hover .upc-submit-row span {
    color: rgba(255, 255, 255, 0.86);
}

/* 참가자 지원사항 */
.upc-support-block {
    margin-top: 28px;
    padding: 38px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.upc-support-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.upc-support-head h3 {
    margin: 16px 0 0;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -0.045em;
    color: #111;
    word-break: keep-all;
}

.upc-support-head p {
    max-width: 560px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    word-break: keep-all;
}

.upc-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.upc-support-card {
    position: relative;
    padding: 28px;
    background: #f8fbf9;
    border: 1px solid rgba(45, 106, 79, 0.14);
}

.upc-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #2d6a4f;
    color: #fff;
    font-size: 21px;
}

.upc-support-card strong {
    display: block;
    margin-bottom: 14px;
    font-size: 19px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.03em;
    color: #111;
    word-break: keep-all;
}

.upc-support-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
}

.upc-support-card li {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    word-break: keep-all;
}

.upc-submit-notice-box {
    margin-top: 18px;
}

.upc-submit-notice-box strong {
    color: #111;
    font-weight: 950;
}

/* 태블릿 이하 */
@media (max-width: 991.98px) {
    .upc-cat-card-merged .upc-cat-desc,
    .upc-cat-card-merged .upc-cat-meta,
    .upc-submit-box {
        min-height: auto;
    }

    .upc-support-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .upc-support-grid {
        grid-template-columns: 1fr;
    }
}

/* 모바일 */
@media (max-width: 575.98px) {
    .upc-category-grid-merged {
        gap: 14px;
    }

    .upc-cat-card-merged {
        padding: 30px 22px 24px;
    }

    .upc-submit-box {
        padding: 18px 16px 16px;
        margin-bottom: 18px;
    }

    .upc-submit-row {
        grid-template-columns: 56px 1fr;
        gap: 8px;
    }

    .upc-submit-row span {
        font-size: 12px;
    }

    .upc-cat-actions {
        grid-template-columns: 1fr;
    }

    .upc-cat-actions .upc-btn {
        min-height: 48px;
        font-size: 13px;
    }

    .upc-support-block {
        margin-top: 20px;
        padding: 26px 22px;
    }

    .upc-support-card {
        padding: 24px 20px;
    }

    .upc-support-card strong {
        font-size: 17px;
    }

    .upc-support-card li {
        font-size: 13px;
    }
}

.upc-overview-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.upc-overview-actions .upc-btn {
    min-width: 220px;
    min-height: 52px;
    font-size: 14px;
    font-weight: 950;
}

@media (max-width: 575.98px) {
    .upc-overview-actions {
        margin-top: 24px;
    }

    .upc-overview-actions .upc-btn {
        width: 100%;
        min-width: 0;
    }
}

.upc-overview-card strong {
    display: -webkit-box;
    margin-bottom: 10px;
    min-height: calc(1.35em * 2);
    font-size: 23px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.04em;
    color: #111;
    word-break: keep-all;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.upc-overview-card p {
    margin: 0;
    min-height: calc(1.65em * 3);
    font-size: 13px;
    line-height: 1.65;
    color: #666;
    word-break: keep-all;
}

@media (max-width: 991.98px) {
    .upc-overview-card strong,
    .upc-overview-card p {
        min-height: auto;
    }

    .upc-overview-card strong {
        margin-bottom: 8px;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .upc-overview-card span {
        margin-bottom: 12px;
    }
}

.upc-category-grid-merged {
    align-items: stretch;
    gap: 18px;
    background: transparent;
    border: 0;
}

.upc-cat-card-merged {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 42px 34px 34px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
}

/* 설명/메타 영역 최소 높이 통일 */
.upc-cat-card-merged .upc-cat-desc {
    min-height: 78px;
    margin-bottom: 28px;
}

.upc-cat-card-merged .upc-cat-meta {
    min-height: 142px;
    margin-bottom: 24px;
}

/* 필수 제출물 박스 위치 통일 */
.upc-submit-box {
    margin: auto 0 24px;
    min-height: 178px;
    padding: 20px 20px 18px;
    background: #f8fbf9;
    border: 1px solid rgba(45, 106, 79, 0.16);
}

.upc-submit-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 950;
    color: #2d6a4f;
    word-break: keep-all;
}

.upc-submit-box-title i {
    font-size: 16px;
    color: currentColor;
}

.upc-submit-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(45, 106, 79, 0.12);
}

.upc-submit-row strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 5px 9px;
    background: #2d6a4f;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.upc-submit-row span {
    font-size: 13px;
    font-weight: 750;
    line-height: 1.55;
    color: #333;
    word-break: keep-all;
}

/* 접수/확인 버튼 레이아웃 완전 통일 */
.upc-cat-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 0;
}

.upc-cat-actions .upc-btn {
    width: 100%;
    min-height: 54px;
    padding: 14px 12px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
}

.upc-cat-actions .upc-btn i {
    margin-right: 7px;
    font-size: 15px;
}

/* 카드 hover 시 제출물 박스 반전 */
.upc-cat-card-merged:hover .upc-submit-box {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.upc-cat-card-merged:hover .upc-submit-box-title {
    color: #74c69d;
}

.upc-cat-card-merged:hover .upc-submit-row {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.upc-cat-card-merged:hover .upc-submit-row strong {
    background: #40916c;
    color: #fff;
}

.upc-cat-card-merged:hover .upc-submit-row span {
    color: rgba(255, 255, 255, 0.86);
}

/* 참가자 지원사항 */
.upc-support-block {
    margin-top: 28px;
    padding: 38px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.upc-support-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.upc-support-head h3 {
    margin: 16px 0 0;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -0.045em;
    color: #111;
    word-break: keep-all;
}

.upc-support-head p {
    max-width: 560px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    word-break: keep-all;
}

.upc-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.upc-support-card {
    position: relative;
    padding: 28px;
    background: #f8fbf9;
    border: 1px solid rgba(45, 106, 79, 0.14);
}

.upc-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #2d6a4f;
    color: #fff;
    font-size: 21px;
}

.upc-support-card strong {
    display: block;
    margin-bottom: 14px;
    font-size: 19px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.03em;
    color: #111;
    word-break: keep-all;
}

.upc-support-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
}

.upc-support-card li {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    word-break: keep-all;
}

.upc-submit-notice-box {
    margin-top: 18px;
}

.upc-submit-notice-box strong {
    color: #111;
    font-weight: 950;
}

/* 태블릿 이하 */
@media (max-width: 991.98px) {
    .upc-cat-card-merged .upc-cat-desc,
    .upc-cat-card-merged .upc-cat-meta,
    .upc-submit-box {
        min-height: auto;
    }

    .upc-support-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .upc-support-grid {
        grid-template-columns: 1fr;
    }
}

/* 모바일 */
@media (max-width: 575.98px) {
    .upc-category-grid-merged {
        gap: 14px;
    }

    .upc-cat-card-merged {
        padding: 30px 22px 24px;
    }

    .upc-submit-box {
        padding: 18px 16px 16px;
        margin-bottom: 18px;
    }

    .upc-submit-row {
        grid-template-columns: 56px 1fr;
        gap: 8px;
    }

    .upc-submit-row span {
        font-size: 12px;
    }

    .upc-cat-actions {
        grid-template-columns: 1fr;
    }

    .upc-cat-actions .upc-btn {
        min-height: 48px;
        font-size: 13px;
    }

    .upc-support-block {
        margin-top: 20px;
        padding: 26px 22px;
    }

    .upc-support-card {
        padding: 24px 20px;
    }

    .upc-support-card strong {
        font-size: 17px;
    }

    .upc-support-card li {
        font-size: 13px;
    }
}

.upc-overview-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.upc-overview-actions .upc-btn {
    min-width: 220px;
    min-height: 52px;
    font-size: 14px;
    font-weight: 950;
}

@media (max-width: 575.98px) {
    .upc-overview-actions {
        margin-top: 24px;
    }

    .upc-overview-actions .upc-btn {
        width: 100%;
        min-width: 0;
    }
}

.upc-overview-card strong {
    display: -webkit-box;
    margin-bottom: 10px;
    min-height: calc(1.35em * 2);
    font-size: 23px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.04em;
    color: #111;
    word-break: keep-all;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.upc-overview-card p {
    margin: 0;
    min-height: calc(1.65em * 3);
    font-size: 13px;
    line-height: 1.65;
    color: #666;
    word-break: keep-all;
}

@media (max-width: 991.98px) {
    .upc-overview-card strong,
    .upc-overview-card p {
        min-height: auto;
    }

    .upc-overview-card strong {
        margin-bottom: 8px;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .upc-overview-card span {
        margin-bottom: 12px;
    }
}

/* 오시는 길 */
.upc-location-map {
    width: 100%;
    margin-bottom: 42px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
    overflow: hidden;
}

.upc-location-map img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.upc-location-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.upc-location-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.upc-location-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.upc-location-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
}

.upc-location-title i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    background: #edf6f0;
    color: #2d6a4f;
    font-size: 17px;
}

.upc-location-title strong {
    font-size: 19px;
    font-weight: 950;
    letter-spacing: -0.035em;
    word-break: keep-all;
}

.upc-location-content > strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 950;
    line-height: 1.5;
    color: #555;
    word-break: keep-all;
}

.upc-location-content > strong.mt {
    margin-top: 18px;
}

.upc-location-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.8;
    color: #777;
    word-break: keep-all;
}

.upc-bus-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.upc-bus-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.55;
    color: #666;
    word-break: keep-all;
}

.upc-bus-list strong {
    flex: 0 0 auto;
    margin-right: 2px;
    font-weight: 900;
    color: #555;
}

.bus-dot {
    width: 9px;
    height: 9px;
    margin-top: 6px;
    flex: 0 0 9px;
    border-radius: 999px;
}

.bus-blue {
    background: #0d6efd;
}

.bus-green {
    background: #52b61f;
}

.bus-red {
    background: #e03131;
}

.bus-yellow {
    background: #f2b705;
}

.upc-location-actions {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.upc-location-actions .upc-btn {
    min-width: 220px;
    min-height: 52px;
    font-size: 14px;
    font-weight: 950;
}

/* 태블릿 이하 */
@media (max-width: 991.98px) {
    .upc-location-map {
        margin-bottom: 34px;
    }

    .upc-location-map img {
        height: 260px;
    }

    .upc-location-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .upc-location-title {
        align-items: center;
    }
}

/* 모바일 */
@media (max-width: 575.98px) {
    .upc-location-map {
        margin-bottom: 28px;
    }

    .upc-location-map img {
        height: 210px;
    }

    .upc-location-grid {
        gap: 24px;
    }

    .upc-location-row {
        padding-bottom: 24px;
    }

    .upc-location-title strong {
        font-size: 18px;
    }

    .upc-location-content > strong {
        font-size: 15px;
    }

    .upc-location-content p,
    .upc-bus-list li {
        font-size: 13px;
        line-height: 1.75;
    }

    .upc-bus-list li {
        display: grid;
        grid-template-columns: 10px 70px 1fr;
        gap: 7px;
    }

    .bus-dot {
        margin-top: 6px;
    }

    .upc-location-actions {
        margin-top: 28px;
    }

    .upc-location-actions .upc-btn {
        width: 100%;
        min-width: 0;
    }
}

/* 문의하기 섹션 */
.upc-contact-section {
    background: #fff;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

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

.upc-contact-card {
    padding: 30px 28px;
    background: #f8fbf9;
    border: 1px solid rgba(45, 106, 79, 0.14);
}

.upc-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: #2d6a4f;
    color: #fff;
    font-size: 21px;
}

.upc-contact-card span {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.14em;
    color: #777;
}

.upc-contact-card a {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: 100%;
    color: #111;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: -0.03em;
    word-break: break-all;
}

.upc-contact-card a:hover {
    color: #2d6a4f;
}

.upc-contact-chip {
    gap: 8px;
    padding: 11px 16px;
    background: #111;
    color: #fff !important;
    font-size: 14px !important;
    border-radius: 999px;
    word-break: keep-all !important;
    white-space: nowrap;
}

.upc-contact-chip:hover {
    background: #2d6a4f;
    color: #fff !important;
}

.upc-contact-chip i {
    font-size: 13px;
}

.upc-support-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.upc-support-card ul {
    margin-bottom: 24px;
}

.upc-support-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.upc-support-actions .upc-btn {
    width: 100%;
}

.upc-support-actions .upc-btn-outline-dark {
    background: #fff;
}

.upc-support-card:hover .upc-support-actions .upc-btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #323232;
}

.upc-contact-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (max-width: 767.98px) {
    .upc-contact-grid {
        grid-template-columns: 1fr;
    }

    .upc-contact-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 14px;
        padding: 16px;
    }

    .upc-contact-body {
        min-width: 0;
    }

    .upc-contact-body a {
        word-break: break-all;
    }
}

/* =========================================================
   UPC Yellow Kit Theme
   기존 CSS 맨 아래에 추가
   이미지 URL만 교체해서 사용
========================================================= */

.upc-yellow-theme {
    --upc-kit-bg: none;

    --upc-yellow: #ffe45c;
    --upc-yellow-strong: #ffd43b;
    --upc-yellow-soft: #fff8d6;
    --upc-yellow-pale: #fffbeb;

    --upc-ink: #17140a;
    --upc-brown: #5f4700;
    --upc-brown-2: #8a6500;
    --upc-line: rgba(95, 71, 0, .16);

    color: var(--upc-ink);
    background:
            radial-gradient(circle at 12% 8%, rgba(255, 228, 92, .34), transparent 32%),
            radial-gradient(circle at 90% 16%, rgba(255, 212, 59, .24), transparent 34%),
            linear-gradient(180deg, #fffdf2 0%, #fff8d6 44%, #fff 100%);
}

/* Hero */
.upc-yellow-theme .upc-hero {
    position: relative;
    isolation: isolate;
    min-height: 88vh;
    background:
            radial-gradient(circle at 16% 18%, rgba(255, 228, 92, .36), transparent 34%),
            linear-gradient(135deg, #fff3a3 0%, #ffdf43 48%, #f7c600 100%);
    color: var(--upc-ink);
    overflow: hidden;
}

/* 이미지 워터마크 */
.upc-yellow-theme .upc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--upc-kit-bg);
    background-repeat: no-repeat;
    background-position: right 5% center;
    background-size: min(760px, 70vw) auto;
    opacity: .16;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* 가독성 보호 레이어 */
.upc-yellow-theme .upc-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
            linear-gradient(90deg, rgba(255, 248, 214, .96) 0%, rgba(255, 248, 214, .82) 42%, rgba(255, 248, 214, .36) 100%),
            radial-gradient(circle at 76% 42%, rgba(255, 255, 255, .28), transparent 34%);
    pointer-events: none;
}

.upc-yellow-theme .upc-hero-inner,
.upc-yellow-theme .upc-hero-bg-text,
.upc-yellow-theme .upc-hero-mark {
    position: relative;
    z-index: 2;
}

.upc-yellow-theme .upc-hero-bg-text {
    color: rgba(95, 71, 0, .08);
}

.upc-yellow-theme .upc-hero-mark {
    border-color: rgba(95, 71, 0, .22);
}

.upc-yellow-theme .upc-hero-mark span {
    border-color: rgba(255, 255, 255, .26);
}

.upc-yellow-theme .upc-kicker,
.upc-yellow-theme .upc-section-label,
.upc-yellow-theme .upc-section-label.light {
    color: var(--upc-brown);
}

.upc-yellow-theme .upc-kicker-line,
.upc-yellow-theme .upc-section-label-line {
    background: currentColor;
}

.upc-yellow-theme .upc-hero-title {
    color: var(--upc-ink);
    text-shadow: 0 1px 0 rgba(255, 255, 255, .36);
}

.upc-yellow-theme .upc-hero-title span,
.upc-yellow-theme .upc-apply-impact-title span {
    color: var(--upc-brown);
}

.upc-yellow-theme .upc-hero-subtitle {
    color: rgba(23, 20, 10, .72);
}

/* Hero stats */
.upc-yellow-theme .upc-hero-stats {
    border-color: rgba(95, 71, 0, .16);
    background: rgba(95, 71, 0, .14);
}

.upc-yellow-theme .upc-hero-stat {
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
}

.upc-yellow-theme .upc-hero-stat span {
    color: rgba(95, 71, 0, .64);
}

.upc-yellow-theme .upc-hero-stat strong {
    color: var(--upc-ink);
}

/* Button */
.upc-yellow-theme .upc-btn-light {
    background: var(--upc-ink);
    color: #fff !important;
    border-color: var(--upc-ink);
}

.upc-yellow-theme .upc-btn-light:hover {
    background: var(--upc-brown);
    border-color: var(--upc-brown);
    color: #fff !important;
}

.upc-yellow-theme .upc-btn-dark {
    background: var(--upc-ink);
    color: #fff !important;
}

.upc-yellow-theme .upc-btn-dark:hover {
    background: var(--upc-brown);
    color: #fff !important;
}

.upc-yellow-theme .upc-btn-outline-light {
    color: var(--upc-ink) !important;
    border-color: rgba(23, 20, 10, .24);
    background: rgba(255, 255, 255, .34);
}

.upc-yellow-theme .upc-btn-outline-light:hover {
    color: var(--upc-ink) !important;
    border-color: var(--upc-ink);
    background: rgba(255, 255, 255, .72);
}

.upc-yellow-theme .upc-btn-outline-dark {
    color: var(--upc-ink) !important;
    border-color: rgba(95, 71, 0, .26);
    background: #fff;
}

.upc-yellow-theme .upc-btn-outline-dark:hover {
    background: var(--upc-yellow);
    border-color: var(--upc-brown);
    color: var(--upc-ink) !important;
}

/* Section */
.upc-yellow-theme .upc-section-soft {
    background: var(--upc-yellow-pale);
}

.upc-yellow-theme .upc-section-dark,
.upc-yellow-theme .upc-apply-impact {
    background:
            radial-gradient(circle at 80% 12%, rgba(255, 228, 92, .16), transparent 30%),
            linear-gradient(135deg, #17140a 0%, #2a2208 100%);
}

.upc-yellow-theme .upc-section-title,
.upc-yellow-theme .upc-cat-card h3,
.upc-yellow-theme .upc-support-head h3,
.upc-yellow-theme .upc-check-card strong,
.upc-yellow-theme .upc-overview-card strong {
    color: var(--upc-ink);
}

.upc-yellow-theme .upc-section-title.light,
.upc-yellow-theme .upc-apply-title {
    color: #fff;
}

.upc-yellow-theme .upc-section-desc,
.upc-yellow-theme .upc-overview-card p,
.upc-yellow-theme .upc-cat-desc,
.upc-yellow-theme .upc-check-card p,
.upc-yellow-theme .upc-support-head p {
    color: rgba(23, 20, 10, .66);
}

.upc-yellow-theme .upc-section-desc.light {
    color: rgba(255, 255, 255, .64);
}

/* Cards */
.upc-yellow-theme .upc-overview-card,
.upc-yellow-theme .upc-cat-card,
.upc-yellow-theme .upc-guide-card,
.upc-yellow-theme .upc-check-card,
.upc-yellow-theme .upc-support-block {
    border-color: var(--upc-line);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 48px rgba(95, 71, 0, .06);
}

.upc-yellow-theme .upc-icon-chip,
.upc-yellow-theme .upc-cat-icon,
.upc-yellow-theme .upc-support-icon,
.upc-yellow-theme .upc-criteria-icon {
    background: var(--upc-yellow);
    color: var(--upc-brown);
}

.upc-yellow-theme .upc-overview-card:hover .upc-icon-chip,
.upc-yellow-theme .upc-check-card:hover .upc-icon-chip {
    background: var(--upc-ink);
    color: var(--upc-yellow);
}

/* Category hover */
.upc-yellow-theme .upc-cat-card:hover {
    background: var(--upc-ink);
}

.upc-yellow-theme .upc-cat-card:hover h3,
.upc-yellow-theme .upc-cat-card:hover .upc-cat-desc,
.upc-yellow-theme .upc-cat-card:hover .upc-meta-row p {
    color: rgba(255, 255, 255, .92);
}

.upc-yellow-theme .upc-cat-card:hover .upc-cat-num,
.upc-yellow-theme .upc-cat-card:hover .upc-cat-badge,
.upc-yellow-theme .upc-cat-card:hover .upc-meta-row span {
    color: rgba(255, 255, 255, .58);
}

.upc-yellow-theme .upc-cat-card:hover .upc-cat-icon {
    background: rgba(255, 228, 92, .16);
    color: var(--upc-yellow);
    border-color: rgba(255, 228, 92, .28);
}

.upc-yellow-theme .upc-cat-card:hover .upc-btn-dark {
    background: var(--upc-yellow);
    color: var(--upc-ink) !important;
}

/* Submit box */
.upc-yellow-theme .upc-submit-box,
.upc-yellow-theme .upc-support-card,
.upc-yellow-theme .upc-prize-note-box,
.upc-yellow-theme .upc-notice-box {
    background: #fff9dc;
    border-color: rgba(95, 71, 0, .16);
}

.upc-yellow-theme .upc-submit-box-title {
    color: var(--upc-brown);
}

.upc-yellow-theme .upc-submit-row {
    border-top-color: rgba(95, 71, 0, .13);
}

.upc-yellow-theme .upc-submit-row strong {
    background: var(--upc-brown);
    color: #fff;
}

/* Criteria */
.upc-yellow-theme .upc-criteria-card {
    background: rgba(255, 255, 255, .06);
}

.upc-yellow-theme .upc-criteria-card:hover {
    background: rgba(255, 228, 92, .08);
}

.upc-yellow-theme .upc-criteria-card em {
    background: rgba(255, 228, 92, .16);
    color: var(--upc-yellow);
}

/* Table */
.upc-yellow-theme .upc-prize-table-wrap {
    border-color: rgba(95, 71, 0, .22);
}

.upc-yellow-theme .upc-prize-table th {
    background: var(--upc-brown);
}

.upc-yellow-theme .upc-prize-table th:first-child {
    background: var(--upc-ink);
}

.upc-yellow-theme .upc-prize-table td[rowspan],
.upc-yellow-theme .upc-prize-table .upc-prize-total {
    background: #fff8d6;
    color: var(--upc-brown);
}

.upc-yellow-theme .upc-prize-table .upc-prize-part {
    background: #fff3a3;
}

/* Apply bottom */
.upc-yellow-theme .upc-apply-bg-text {
    color: rgba(255, 228, 92, .06);
}

.upc-yellow-theme .upc-apply-mark {
    border-color: rgba(255, 228, 92, .28);
}

.upc-yellow-theme .upc-apply-mark span {
    border-color: rgba(255, 228, 92, .08);
}

.upc-yellow-theme .upc-apply-info-grid {
    border-color: rgba(255, 228, 92, .18);
    background: rgba(255, 228, 92, .12);
}

.upc-yellow-theme .upc-apply-info-card {
    background: rgba(255, 255, 255, .06);
}

.upc-yellow-theme .upc-apply-info-card span {
    color: rgba(255, 228, 92, .68);
}

/* Mobile */
@media (max-width: 991.98px) {
    .upc-yellow-theme .upc-hero::before {
        background-position: right -120px top 96px;
        background-size: 620px auto;
        opacity: .12;
    }

    .upc-yellow-theme .upc-hero::after {
        background:
                linear-gradient(180deg, rgba(255, 248, 214, .94) 0%, rgba(255, 248, 214, .84) 62%, rgba(255, 248, 214, .64) 100%);
    }
}

@media (max-width: 575.98px) {
    .upc-yellow-theme .upc-hero::before {
        background-position: center top 80px;
        background-size: 480px auto;
        opacity: .10;
    }

    .upc-yellow-theme .upc-hero-stat {
        background: rgba(255, 255, 255, .82);
    }
}

.upc-yellow-theme .upc-hero-clean {
    position: relative;
    isolation: isolate;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #fff6bf;
    background-image:
            linear-gradient(
                    90deg,
                    rgba(255, 253, 242, .98) 0%,
                    rgba(255, 248, 214, .96) 34%,
                    rgba(255, 236, 128, .62) 56%,
                    rgba(255, 224, 68, .18) 100%
            ),
            var(--upc-hero-img);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* 기존 pseudo 배경 제거 */
.upc-yellow-theme .upc-hero-clean::before,
.upc-yellow-theme .upc-hero-clean::after {
    display: none !important;
    content: none !important;
}

.upc-yellow-theme .upc-hero-clean .upc-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 96px 64px 56px;
}

.upc-yellow-theme .upc-hero-copy {
    width: min(760px, 52vw);
}

.upc-yellow-theme .upc-hero-clean .upc-kicker {
    color: #6f5600;
}

.upc-yellow-theme .upc-hero-clean .upc-kicker-line {
    background: currentColor;
}

.upc-yellow-theme .upc-hero-clean .upc-hero-title {
    max-width: 760px;
    margin: 0;
    font-size: clamp(54px, 6.4vw, 104px);
    line-height: .98;
    letter-spacing: -0.07em;
    color: #141006;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .42);
}

.upc-yellow-theme .upc-hero-clean .upc-hero-title span {
    color: #6f5600;
}

.upc-yellow-theme .upc-hero-clean .upc-hero-subtitle {
    max-width: 620px;
    margin: 28px 0 36px;
    color: rgba(20, 16, 6, .72);
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 500;
    line-height: 1.75;
}

.upc-yellow-theme .upc-hero-clean .upc-hero-bg-text {
    position: absolute;
    left: 32px;
    bottom: -12px;
    z-index: 1;
    font-size: clamp(84px, 14vw, 210px);
    font-weight: 950;
    line-height: .8;
    letter-spacing: -0.08em;
    color: rgba(111, 86, 0, .065);
    pointer-events: none;
}

.upc-yellow-theme .upc-hero-clean .upc-hero-stats {
    width: min(720px, 100%);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0 0 18px;
    border: 1px solid rgba(111, 86, 0, .18);
    background: rgba(111, 86, 0, .14);
}

.upc-yellow-theme .upc-hero-clean .upc-hero-stat {
    min-height: 96px;
    padding: 18px 16px;
    background: rgba(255, 255, 255, .74);
    backdrop-filter: blur(12px);
}

.upc-yellow-theme .upc-hero-clean .upc-hero-stat span {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    color: rgba(111, 86, 0, .72);
}

.upc-yellow-theme .upc-hero-clean .upc-hero-stat strong {
    display: block;
    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: 950;
    line-height: 1.28;
    color: #141006;
}

.upc-yellow-theme .upc-hero-clean .upc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.upc-yellow-theme .upc-hero-clean .upc-btn-light {
    background: #141006;
    border-color: #141006;
    color: #fff !important;
}

.upc-yellow-theme .upc-hero-clean .upc-btn-light:hover {
    background: #6f5600;
    border-color: #6f5600;
}

.upc-yellow-theme .upc-hero-clean .upc-btn-outline-light {
    background: rgba(255, 255, 255, .52);
    border-color: rgba(20, 16, 6, .24);
    color: #141006 !important;
}

.upc-yellow-theme .upc-hero-clean .upc-btn-outline-light:hover {
    background: #fff;
    border-color: #141006;
    color: #141006 !important;
}

/* 태블릿 */
@media (max-width: 991.98px) {
    .upc-yellow-theme .upc-hero-clean {
        min-height: auto;
        background-image:
                linear-gradient(
                        180deg,
                        rgba(255, 253, 242, .50) 0%,
                        rgba(255, 248, 214, .96) 50%,
                        rgba(255, 236, 128, .72) 100%
                ),
                var(--upc-hero-img);
        background-position: right top;
        background-size: auto 100%, cover;
    }

    .upc-yellow-theme .upc-hero-clean .upc-hero-inner {
        padding: 88px 26px 62px;
    }

    .upc-yellow-theme .upc-hero-copy {
        width: 100%;
        max-width: 680px;
    }

    .upc-yellow-theme .upc-hero-clean .upc-hero-title {
        font-size: clamp(44px, 9vw, 72px);
    }

    .upc-yellow-theme .upc-hero-clean .upc-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

//* =========================================================
   Mobile Hero Compact Fix
   모바일 히어로: 조립키트는 보이되 본문은 위로 당김
========================================================= */

@media (max-width: 575.98px) {

    .upc-yellow-theme .upc-hero-clean {
        min-height: auto;
        background:
                linear-gradient(
                        180deg,
                        #fffdf2 0%,
                        #fff8d6 62%,
                        #ffe45c 100%
                ) !important;
        overflow: hidden;
    }

    /* 조립키트 이미지를 장식처럼 상단 우측에 배치 */
    .upc-yellow-theme .upc-hero-clean::before {
        display: block !important;
        content: "" !important;
        position: absolute;
        top: 8px;
        right: -128px;
        z-index: 0;
        width: 390px;
        height: 245px;
        background-image: var(--upc-hero-img);
        background-repeat: no-repeat;
        background-position: right top;
        background-size: contain;
        opacity: .62;
        pointer-events: none;
    }

    /* 이미지가 글자 뒤를 과하게 방해하지 않도록 보호 */
    .upc-yellow-theme .upc-hero-clean::after {
        display: block !important;
        content: "" !important;
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
                linear-gradient(
                        180deg,
                        rgba(255, 253, 242, .22) 0%,
                        rgba(255, 248, 214, .58) 26%,
                        rgba(255, 248, 214, .94) 46%,
                        rgba(255, 248, 214, .98) 72%,
                        rgba(255, 228, 92, .72) 100%
                );
        pointer-events: none;
    }

    /* 핵심: 기존 210px → 118px 정도로 축소 */
    .upc-yellow-theme .upc-hero-clean .upc-hero-inner {
        position: relative;
        z-index: 2;
        padding-top: 118px !important;
        padding-bottom: 44px !important;
        padding-left: 22px;
        padding-right: 22px;
    }

    .upc-yellow-theme .upc-hero-clean .upc-kicker {
        margin-bottom: 18px;
        font-size: 11px;
        letter-spacing: .16em;
    }

    .upc-yellow-theme .upc-hero-clean .upc-hero-title {
        font-size: clamp(38px, 10.5vw, 48px);
        line-height: 1.04;
        letter-spacing: -0.055em;
    }

    .upc-yellow-theme .upc-hero-clean .upc-hero-subtitle {
        margin: 22px 0 26px;
        font-size: 14px;
        line-height: 1.68;
    }

    .upc-yellow-theme .upc-hero-clean .upc-hero-stats {
        margin-top: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .upc-yellow-theme .upc-hero-clean .upc-hero-stat {
        min-height: 82px;
        padding: 14px 12px;
    }

    .upc-yellow-theme .upc-hero-clean .upc-hero-stat span {
        margin-bottom: 8px;
        font-size: 11px;
    }

    .upc-yellow-theme .upc-hero-clean .upc-hero-stat strong {
        font-size: 17px;
        line-height: 1.32;
    }
}

/* =========================================================
   Contact Section Yellow Theme
   문의하기: 연락처 / 이메일 / 카카오채팅 아이콘 노랑화
========================================================= */

.upc-yellow-theme .upc-contact-section {
    background:
            radial-gradient(circle at 12% 10%, rgba(255, 228, 92, .22), transparent 30%),
            linear-gradient(180deg, #fff 0%, #fff9dc 100%);
}

.upc-yellow-theme .upc-contact-card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(111, 86, 0, .16);
    box-shadow: 0 18px 44px rgba(111, 86, 0, .06);
}

.upc-yellow-theme .upc-contact-icon {
    background: #ffe45c;
    color: #6f5600;
    border: 1px solid rgba(111, 86, 0, .14);
    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .5),
            0 10px 24px rgba(111, 86, 0, .12);
}

.upc-yellow-theme .upc-contact-icon i {
    color: currentColor;
}

.upc-yellow-theme .upc-contact-card span {
    color: rgba(111, 86, 0, .72);
}

.upc-yellow-theme .upc-contact-card a {
    color: #141006;
}

.upc-yellow-theme .upc-contact-card a:hover {
    color: #6f5600;
}

/* 카카오 채팅 버튼 */
.upc-yellow-theme .upc-contact-chip {
    background: #ffe45c;
    color: #141006 !important;
    border: 1px solid rgba(111, 86, 0, .18);
}

.upc-yellow-theme .upc-contact-chip:hover {
    background: #141006;
    color: #ffe45c !important;
    border-color: #141006;
}

/* 카드 hover */
.upc-yellow-theme .upc-contact-card:hover .upc-contact-icon {
    background: #141006;
    color: #ffe45c;
    transform: translateY(-2px);
}

/* =========================================================
   Category Card Hover Yellow Override
   접수 분야 카드 hover 초록색 제거
========================================================= */

.upc-yellow-theme .upc-cat-card-merged:hover {
    background: #141006;
    border-color: rgba(255, 228, 92, .28);
}

/* 카드 상단 아이콘 */
.upc-yellow-theme .upc-cat-card-merged:hover .upc-cat-icon {
    background: rgba(255, 228, 92, .16);
    border-color: rgba(255, 228, 92, .34);
    color: #ffe45c;
}

/* 카드 번호 / 뱃지 */
.upc-yellow-theme .upc-cat-card-merged:hover .upc-cat-num,
.upc-yellow-theme .upc-cat-card-merged:hover .upc-cat-badge,
.upc-yellow-theme .upc-cat-card-merged:hover .upc-meta-row span {
    color: rgba(255, 228, 92, .72);
}

.upc-yellow-theme .upc-cat-card-merged:hover .upc-cat-badge {
    border-color: rgba(255, 228, 92, .28);
}

/* 메타 아이콘 */
.upc-yellow-theme .upc-cat-card-merged:hover .upc-meta-row span i {
    color: #ffe45c;
}

/* 제목 / 설명 */
.upc-yellow-theme .upc-cat-card-merged:hover h3,
.upc-yellow-theme .upc-cat-card-merged:hover .upc-cat-desc,
.upc-yellow-theme .upc-cat-card-merged:hover .upc-meta-row p {
    color: rgba(255, 255, 255, .92);
}

/* 필수 제출물 박스 */
.upc-yellow-theme .upc-cat-card-merged:hover .upc-submit-box {
    background: rgba(255, 228, 92, .08);
    border-color: rgba(255, 228, 92, .22);
}

.upc-yellow-theme .upc-cat-card-merged:hover .upc-submit-box-title {
    color: #ffe45c;
}

.upc-yellow-theme .upc-cat-card-merged:hover .upc-submit-row {
    border-top-color: rgba(255, 228, 92, .18);
}

.upc-yellow-theme .upc-cat-card-merged:hover .upc-submit-row strong {
    background: #ffe45c;
    color: #141006;
}

.upc-yellow-theme .upc-cat-card-merged:hover .upc-submit-row span {
    color: rgba(255, 255, 255, .88);
}

/* 접수하기 / 접수확인 버튼 */
.upc-yellow-theme .upc-cat-card-merged:hover .upc-btn-dark {
    background: #ffe45c;
    border-color: #ffe45c;
    color: #141006 !important;
}

.upc-yellow-theme .upc-cat-card-merged:hover .upc-btn-dark:hover {
    background: #fff3a3;
    border-color: #fff3a3;
    color: #141006 !important;
}

/* outline 버튼이 섞여 있는 경우 대비 */
.upc-yellow-theme .upc-cat-card-merged:hover .upc-btn-outline-dark {
    background: transparent;
    border-color: rgba(255, 228, 92, .34);
    color: #ffe45c !important;
}

.upc-yellow-theme .upc-cat-card-merged:hover .upc-btn-outline-dark:hover {
    background: #ffe45c;
    border-color: #ffe45c;
    color: #141006 !important;
}