@charset "utf-8";

html, body {
    width: 100%;
    overflow-x: hidden; /* 가로 스크롤 숨김 */
}

body{
overflow-x: hidden;
padding:0;
letter-spacing:-1px;
background-color: #FAF8F2;
color: #1F2A1F;
overflow-x: hidden;
line-height: 1.6;
}

body.menu-open {
overflow: hidden;
}

.container {
    max-width: 1400px;
    width: 94vw;
    margin: 0 auto;
}


/* base */
#wrap {width:100%; margin:0 auto; padding:0;}
.wrap   {max-width:1600px; margin:0 auto; padding:0; position:relative;}
.wrap10 {max-width:1000px; margin:0 auto; padding:0; position:relative;}
.wrap12 {max-width:1200px; margin:0 auto; padding:0; position:relative;}
.wrap14 {max-width:1400px; margin:0 auto; padding:0; position:relative;}
.wrap16 {max-width:1600px; margin:0 auto; padding:0; position:relative;}
.wrap_100 {max-width:100%; margin:0 auto; padding:0; position:relative;}

.wrap_sub {background-color:#FAF8F2; padding:50px 0 140px;}
.wrap_bg1 {background-color:#ffffff;}
.wrap_bg2 {background-color:#fbf8f7;}

.container {
    max-width: 1400px;
    width: 94vw;
    margin: 0 auto;
}
.section-padding {
    padding: 100px 0;
}
.section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}
.section-label {
    font-size: 14px;
    font-weight: 700;
    color: #2F80ED;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.section-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #3F4A25;
}

/* 헤더 레이아웃 */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 150px;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background-color: #fefdf9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}
header.peace-header.is-scrolled,
body.peace-menu-open header.peace-header {
    background-color: rgb(253 254 249 / 50%);
    height: 75px;
}
header.peace-header.is-scrolled .logo a img {
    height:50px
}

header.peace-header.is-scrolled .gnb > li > a {
    font-size: 17px;
}
header.peace-header.is-scrolled .dropdown {
    top: 65px;
}
header .header-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo a {
    font-size: 22px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}
header .logo span { color: #F58220; letter-spacing: 0.5px; }
header .gnb { display: flex; gap: 40px; margin:0; }
header .gnb > li { position: relative; }
header .gnb > li > a {
    color: #555;
    font-weight: 500;
    font-size: 19px;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
}

header .dropdown {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 160px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
header .dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    color: #5F6658;
    transition: background 0.2s;
}
header .dropdown a:hover {
    background-color: #EEF1E6;
    color: #4F5D2F;
}


header .header-btn .btn-header {
    background-color: #879422;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
}
header .header-btn .btn-header:hover {
    background-color: #fafff3;
    border: solid 1px #6a703a;
    color: #4f570f;
}

@media (min-width: 769px) {
    header.peace-header .gnb > li:hover > a,
    header.peace-header .gnb > li:focus-within > a {
        color: #F58220;
    }
    header.peace-header .gnb > li:hover > .dropdown,
    header.peace-header .gnb > li:focus-within > .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 1400px) {
    header .logo a img {height:60px}
    header .header-btn .btn-header { display:none; }
}
@media (max-width: 1200px) {
    header .logo a { font-size: 18px; }
    header .logo a img {height:40px}
    header .gnb > li > a {font-size: 15px;}
    header.peace-header.is-scrolled .gnb > li > a {font-size: 15px;}
    header .header-btn .btn-header { display:none; }
}


/* 푸터 레이아웃 */
footer {
    background-color: #0e2920;
    color: #FAF8F2;
    padding: 60px 0;
    font-size: 14px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FFFFFF;
}
.footer-info p {
    color: #b9bcb7;
    margin-bottom: 8px;
    line-height: 1.8;
}
.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: flex-end;
}
.footer-links a { font-weight: 700; }
.footer-links a.privacy { color: #F58220; }
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    color: #5F6658;
}


/* 기본 영역 */
header.peace-header .peace-header__menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1003;
}
header.peace-header .peace-header__menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #333;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
header.peace-header .peace-header__menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
header.peace-header .peace-header__menu-btn.active span:nth-child(2) {
    opacity: 0;
}
header.peace-header .peace-header__menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.peace-header__overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.peace-header__overlay.active {
    opacity: 1;
    visibility: visible;
}
body.peace-menu-open {
    overflow: hidden;
}
@media (max-width: 768px) {
    header.peace-header {
        height: 70px;
    }
    header .header-btn {
        display:none;
    }
    header.peace-header {
        z-index: 1000;
    }
    header.peace-header .peace-header__menu-btn {
        display: block;
    }
    header.peace-header .gnb {
        display: block;
        position: fixed;
        top: 70px;
        right: 0;
        width: min(86vw, 360px);
        height: calc(100vh - 70px);
        padding: 20px 24px 40px;
        overflow-y: auto;
        background: #FFFFFF;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
        box-shadow: -12px 20px 35px rgba(0, 0, 0, 0.16);
        z-index: 1002;
    }
    header.peace-header .gnb.active {
        transform: translateX(0);
        visibility: visible;
    }
    header.peace-header .gnb > li {
        border-bottom: 1px solid #EEF1E6;
    }
    header.peace-header .gnb > li > a {
        position: relative;
        padding: 18px 34px 18px 4px;
        color: #1F2A1F;
        font-size: 15px;
        font-weight: 700;
    }
    header.peace-header .gnb > li:has(.dropdown) > a::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 6px;
        width: 8px;
        height: 8px;
        border-right: 2px solid #5F6658;
        border-bottom: 2px solid #5F6658;
        transform: translateY(-70%) rotate(45deg);
        transition: transform 0.25s ease;
    }
    header.peace-header .gnb > li.open > a::after {
        transform: translateY(-25%) rotate(225deg);
    }
    header.peace-header .dropdown {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 0;
        box-shadow: none;
        background: #F7F8F3;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    header.peace-header .gnb > li.open .dropdown {
        max-height: 320px;
        padding: 8px 0;
        transform: none;
    }
    header.peace-header .dropdown a {
        padding: 11px 16px;
        color: #5F6658;
    }
}


/* 메인 */


/* =========================================================
   메인 히어로 섹션
   ========================================================= */
.ssgm-hero {
  --ssgm-content-max: 1440px;
  --ssgm-forest: #073f31;
  --ssgm-forest-deep: #00281f;
  --ssgm-champagne: #c7a45e;

  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 1920px;
  height: clamp(720px, 62.5vw, 1200px);
  min-height: 720px;
  margin-inline: auto;
  overflow: hidden;
  background-color: #d9c49a;
  font-family: "Noto Sans KR", sans-serif;
}

.ssgm-hero,
.ssgm-hero *,
.ssgm-hero *::before,
.ssgm-hero *::after {
  box-sizing: border-box;
}

/* Bootstrap 기본 container 폭을 이 컴포넌트 안에서만 1440px로 확장 */
.ssgm-hero > .ssgm-hero__container {
  --bs-gutter-x: 48px;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--ssgm-content-max);
  height: 100%;
  margin-inline: auto;
}

.ssgm-hero__media,
.ssgm-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ssgm-hero__media {
  z-index: 0;
}

.ssgm-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center center;
}

/*
  좌측 하단에서 시작해 우측 상단 방향으로 부드럽게 퍼지는 원형 오버레이.
  타원 중심을 좌측 하단 바깥쪽(-8% 108%)에 두어 첨부 시안처럼 자연스럽게 올라옵니다.
*/
.ssgm-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
radial-gradient(
      ellipse 88% 92% at -9% 100%,
      rgba(0, 40, 31, 0.98) 0%,
      rgba(0, 40, 31, 0.94) 24%,
      rgba(0, 40, 31, 0.82) 42%,
      rgba(0, 40, 31, 0.58) 58%,
      rgba(0, 40, 31, 0.28) 72%,
      rgba(0, 40, 31, 0.08) 84%,
      rgba(0, 40, 31, 0) 100%
    ),
    radial-gradient(
      ellipse 70% 58% at 2% 100%,
      rgba(0, 28, 22, 0.72) 0%,
      rgba(0, 28, 22, 0.42) 46%,
      rgba(0, 28, 22, 0) 82%
    );
}

.ssgm-hero__content {
  max-width: 760px;
  padding-bottom: clamp(64px, 8.2vw, 158px);
  color: #fff;
}

.ssgm-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 3.3vw, 54px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.16);
}

.ssgm-hero__subtitle {
  margin: 18px 0 0;
  color: var(--ssgm-champagne);
  font-size: clamp(23px, 1.6vw, 31px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ssgm-hero__meta {
  margin-top: clamp(42px, 4vw, 76px);
}

.ssgm-hero__date,
.ssgm-hero__place {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 1.55vw, 31px);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.ssgm-hero__date span {
  font-size: 0.76em;
  letter-spacing: 0.04em;
}

.ssgm-hero__actions {
  margin-top: clamp(34px, 3.4vw, 54px);
}

.ssgm-hero .ssgm-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 258px;
  min-height: 64px;
  padding: 14px 34px;
  border-radius: 10px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ssgm-hero .ssgm-hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.ssgm-hero .ssgm-hero__btn--primary {
  border: 1px solid var(--ssgm-champagne);
  background-color: var(--ssgm-champagne);
  color: #fff;
}

.ssgm-hero .ssgm-hero__btn--primary:hover,
.ssgm-hero .ssgm-hero__btn--primary:focus {
  border-color: #d2b371;
  background-color: #d2b371;
  color: #fff;
}

.ssgm-hero .ssgm-hero__btn--outline {
  border: 3px solid rgba(255, 255, 255, 0.92);
  background-color: rgba(0, 48, 37, 0.38);
  color: #fff;
  backdrop-filter: blur(2px);
}

.ssgm-hero .ssgm-hero__btn--outline:hover,
.ssgm-hero .ssgm-hero__btn--outline:focus {
  border-color: #fff;
  background-color: rgba(0, 48, 37, 0.72);
  color: #fff;
}

@media (max-width: 1199.98px) {
  .ssgm-hero > .ssgm-hero__container {
    --bs-gutter-x: 40px;
  }

  .ssgm-hero .ssgm-hero__btn {
    min-width: 220px;
  }
}

@media (max-width: 767.98px) {
  .ssgm-hero {
    width: 100%;
    max-width: none;
    height: max(760px, 100svh);
    min-height: 760px;
  }

  .ssgm-hero > .ssgm-hero__container {
    --bs-gutter-x: 32px;
  }

  .ssgm-hero__media img {
    object-position: center center;
  }

  .ssgm-hero__shade {
    background:
      radial-gradient(
        ellipse 135% 72% at 0% 108%,
        rgba(0, 40, 31, 0.98) 0%,
        rgba(0, 40, 31, 0.90) 34%,
        rgba(0, 40, 31, 0.62) 56%,
        rgba(0, 40, 31, 0.24) 76%,
        rgba(0, 40, 31, 0) 100%
      );
  }

  .ssgm-hero__content {
    max-width: 100%;
    padding-bottom: max(34px, env(safe-area-inset-bottom));
  }

  .ssgm-hero__title {
    font-size: clamp(33px, 9.3vw, 45px);
    line-height: 1.18;
  }

  .ssgm-hero__subtitle {
    margin-top: 12px;
    font-size: clamp(18px, 5vw, 23px);
  }

  .ssgm-hero__meta {
    margin-top: 28px;
  }

  .ssgm-hero__date,
  .ssgm-hero__place {
    font-size: clamp(18px, 5vw, 23px);
  }

  .ssgm-hero__actions {
    width: 100%;
    margin-top: 26px;
    gap: 10px !important;
  }

  .ssgm-hero .ssgm-hero__btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    min-height: 54px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 17px;
  }
}

@media (max-width: 389.98px) {
  .ssgm-hero__actions {
    flex-direction: column;
  }

  .ssgm-hero .ssgm-hero__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ssgm-hero .ssgm-hero__btn {
    transition: none;
  }
}



/* =========================================================
   대회정보 섹션
   ========================================================= */
.ssgm-event-info {
    --ssgm-info-forest: #082f25;
    --ssgm-info-gold: #b9914c;
    --ssgm-info-text: #292b28;
    --ssgm-info-line: rgba(177, 153, 109, 0.28);
    --ssgm-info-border: #d8c8a9;
    position: relative;
    width: 100%;
    padding: 64px 0 88px;
    overflow: visible;
    background: linear-gradient(180deg, #fcfaf6 0%, #faf7f0 100%);
}

.ssgm-event-info__container {
    position: relative;
    width: 100%;
    max-width: 1440px;
}

.ssgm-event-info__details {
    position: relative;
    z-index: 5;
    height: 100%;
    padding: 4px 36px 4px 0;
}

.ssgm-event-info__heading {
    position: relative;
    width:100%;
    height:150px;
    z-index: 6;
    display: block;
    margin: 0 0 18px;
    visibility: visible;
    opacity: 1;
}

.ssgm-event-info__title {
    position: relative;
    z-index: 6;
    display: block;
    margin: 0;
    color: var(--ssgm-info-forest);
    font-size: clamp(24px, 1.55vw, 30px);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.04em;
    visibility: visible;
    opacity: 1;
}

.ssgm-event-info__title-line {
    display: block;
    width: 42px;
    height: 1px;
    margin-top: 12px;
    background: var(--ssgm-info-gold);
}

.ssgm-event-info__list {
    position: relative;
    z-index: 5;
    width: 100%;
}

.ssgm-event-info__item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 78px;
    padding: 11px 0;
    border-bottom: 1px solid var(--ssgm-info-line);
}

.ssgm-event-info__item:first-child {
    border-top: 1px solid var(--ssgm-info-line);
}

.ssgm-event-info__icon {
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--ssgm-info-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    color: var(--ssgm-info-gold);
    font-size: 19px;
}

.ssgm-event-info__text {
    min-width: 0;
}

.ssgm-event-info__text strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ssgm-info-gold);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.ssgm-event-info__text p {
    margin: 0;
    color: var(--ssgm-info-text);
    font-size: clamp(14px, 0.9vw, 16px);
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -0.025em;
    word-break: keep-all;
}

.ssgm-course-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    height: 100%;
    min-height: 520px;
    padding: 7px;
    border: 1px solid rgba(189, 152, 84, 0.2);
    border-radius: 20px;
}

.ssgm-course-card {
    position: relative;
    min-width: 0;
    overflow: visible;
    border-radius: 16px;
    isolation: isolate;
}

.ssgm-course-card__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    border: 1px solid var(--ssgm-info-border);
    border-radius: 16px;
    background: #e9e0cf;
    box-shadow: 0 12px 26px rgba(72, 56, 25, 0.08);
}

.ssgm-course-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ssgm-course-card__shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 16px;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(250, 247, 240, 0.97) 0%,
        rgba(250, 247, 240, 0.86) 22%,
        rgba(250, 247, 240, 0.38) 43%,
        rgba(250, 247, 240, 0) 64%
    );
}

.ssgm-course-card__content {
    position: absolute;
    z-index: 5;
    top: 18px;
    left: 20px;
    right: 16px;
    display: block;
    min-width: 0;
    overflow: visible;
    pointer-events: none;
}

.ssgm-course-card__title {
    display: block;
    margin: 0;
    color: var(--ssgm-info-forest);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.015em;
    white-space: nowrap;
}

.ssgm-course-card__line {
    display: block;
    width: 30px;
    height: 1px;
    margin: 7px 0 6px;
    background: var(--ssgm-info-gold);
}

.ssgm-course-card__distance {
    display: block;
    margin: 0;
    color: var(--ssgm-info-gold);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    white-space: nowrap;
}

.ssgm-course-card__link {
    position: absolute;
    z-index: 5;
    left: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    color: #fff;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    text-decoration: none;
}

.ssgm-course-card__link:hover,
.ssgm-course-card__link:focus {
    color: #fff;
}

.ssgm-course-card--half {
    grid-column: 1;
    grid-row: 1 / 3;
}

.ssgm-course-card--ten {
    grid-column: 2;
    grid-row: 1;
}

.ssgm-course-card--five {
    grid-column: 2;
    grid-row: 2;
}

.ssgm-course-card--half .ssgm-course-card__media,
.ssgm-course-card--half .ssgm-course-card__shade {
    clip-path: polygon(
        0 0,
        100% 0,
        100% 89%,
        91% 100%,
        0 100%
    );
}

.ssgm-course-card--ten .ssgm-course-card__media,
.ssgm-course-card--ten .ssgm-course-card__shade {
    clip-path: polygon(
        0 0,
        100% 0,
        100% 86%,
        89% 100%,
        0 100%
    );
}

.ssgm-course-card--five .ssgm-course-card__media,
.ssgm-course-card--five .ssgm-course-card__shade {
    clip-path: polygon(
        9% 0,
        100% 0,
        100% 100%,
        0 100%,
        0 14%
    );
}

/* 오른쪽 작은 카드들은 폭이 좁기 때문에 별도 위치 적용 */
.ssgm-course-card--ten .ssgm-course-card__content {
    top: 16px;
    left: 16px;
    right: 12px;
}

.ssgm-course-card--five .ssgm-course-card__content {
    top: 16px;
    left: 26px;
    right: 12px;
}

.ssgm-course-card--ten .ssgm-course-card__title,
.ssgm-course-card--five .ssgm-course-card__title {
    font-size: 13px;
}

.ssgm-course-card--ten .ssgm-course-card__distance,
.ssgm-course-card--five .ssgm-course-card__distance {
    font-size: 11px;
}

.ssgm-course-card--half .ssgm-course-card__content {
    top: 22px;
    left: 22px;
    right: 18px;
}

.ssgm-course-card--half .ssgm-course-card__title {
    font-size: 17px;
}

.ssgm-course-card--half .ssgm-course-card__distance {
    font-size: 13px;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .ssgm-course-grid {
        grid-template-columns: minmax(0, 54fr) minmax(0, 46fr);
        min-height: 490px;
        gap: 10px;
    }

    .ssgm-course-card--half .ssgm-course-card__title {
        font-size: 15px;
    }

    .ssgm-course-card--ten .ssgm-course-card__title,
    .ssgm-course-card--five .ssgm-course-card__title {
        font-size: 12px;
    }
}

@media (max-width: 1199.98px) {
    .ssgm-course-grid {
        min-height: 540px;
    }
}

@media (max-width: 767.98px) {
    .ssgm-course-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: 0;
        gap: 12px;
    }

    .ssgm-course-card--half,
    .ssgm-course-card--ten,
    .ssgm-course-card--five {
        grid-column: auto;
        grid-row: auto;
        height: 270px;
    }

    .ssgm-course-card__media,
    .ssgm-course-card__shade {
        clip-path: none !important;
    }

    .ssgm-course-card__content,
    .ssgm-course-card--half .ssgm-course-card__content,
    .ssgm-course-card--ten .ssgm-course-card__content,
    .ssgm-course-card--five .ssgm-course-card__content {
        top: 18px;
        left: 20px;
        right: 16px;
    }

    .ssgm-course-card__title,
    .ssgm-course-card--half .ssgm-course-card__title,
    .ssgm-course-card--ten .ssgm-course-card__title,
    .ssgm-course-card--five .ssgm-course-card__title {
        font-size: 15px;
    }

    .ssgm-course-card__distance,
    .ssgm-course-card--half .ssgm-course-card__distance,
    .ssgm-course-card--ten .ssgm-course-card__distance,
    .ssgm-course-card--five .ssgm-course-card__distance {
        font-size: 12px;
    }
}

/* =========================================================
   공지사항 섹션
   ========================================================= */
.ssgm-notice-guide {
    --ssgm-notice-forest: #082f25;
    --ssgm-notice-gold: #b9914c;
    --ssgm-notice-text: #292b28;
    --ssgm-notice-muted: #9c7b42;
    --ssgm-notice-line: rgba(177, 153, 109, 0.28);
    position: relative;
    width: 100%;
    padding: 72px 0 92px;
    overflow: hidden;
    background: linear-gradient(180deg, #faf7f0 0%, #fcfaf6 100%);
}

.ssgm-notice-guide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1440px, calc(100% - 48px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(189, 152, 84, 0.42) 12%,
        rgba(189, 152, 84, 0.42) 88%,
        transparent 100%
    );
}

.ssgm-notice-guide__container {
    position: relative;
    width: 100%;
    max-width: 1440px;
}

.ssgm-notice-guide .row > [class*="col-"] {
    min-width: 0;
}

.ssgm-notice-guide__column {
    height: 100%;
    padding: 0 28px 0 0;
}

.ssgm-notice-guide .col-xl-6:last-child .ssgm-notice-guide__column {
    padding-right: 0;
    padding-left: 28px;
}

.ssgm-notice-guide__heading {
    position: relative;
    margin: 0 0 22px;
}

.ssgm-notice-guide__title {
    margin: 0;
    color: var(--ssgm-notice-forest);
    font-size: clamp(24px, 1.55vw, 30px);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.ssgm-notice-guide__title-line {
    display: block;
    width: 42px;
    height: 1px;
    margin-top: 12px;
    background: var(--ssgm-notice-gold);
}

.ssgm-notice__list {
    width: 100%;
    border-top: 1px solid var(--ssgm-notice-line);
}

.ssgm-notice__item {
    border-bottom: 1px solid var(--ssgm-notice-line);
}

.ssgm-notice__link {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto 20px;
    align-items: center;
    gap: 14px;
    min-height: 90px;
    padding: 16px 0;
    color: var(--ssgm-notice-text);
    text-decoration: none;
}

.ssgm-notice__icon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 42px;
    color: var(--ssgm-notice-gold);
    font-size: 23px;
    line-height: 1;
}

.ssgm-notice__subject {
    min-width: 0;
    overflow: hidden;
    color: var(--ssgm-notice-text);
    font-size: clamp(14px, 0.92vw, 16px);
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ssgm-notice__date {
    color: var(--ssgm-notice-muted);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
    white-space: nowrap;
}

.ssgm-notice__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--ssgm-notice-text);
    font-size: 14px;
    transition: transform 0.2s ease;
}

.ssgm-notice__link:hover .ssgm-notice__arrow,
.ssgm-notice__link:focus .ssgm-notice__arrow {
    transform: translateX(4px);
}

.ssgm-notice__more {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--ssgm-notice-gold);
    color: var(--ssgm-notice-gold);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
}

.ssgm-notice__more:hover,
.ssgm-notice__more:focus {
    color: var(--ssgm-notice-forest);
    border-color: var(--ssgm-notice-forest);
}

.ssgm-guide-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--ssgm-notice-line);
    border-left: 1px solid var(--ssgm-notice-line);
}

.ssgm-guide-menu__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    min-height: 158px;
    padding: 24px 18px 18px;
    border-right: 1px solid var(--ssgm-notice-line);
    border-bottom: 1px solid var(--ssgm-notice-line);
    color: var(--ssgm-notice-text);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.ssgm-guide-menu__item:hover,
.ssgm-guide-menu__item:focus {
    background: rgba(185, 145, 76, 0.05);
}

.ssgm-guide-menu__icon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 30px;
    margin-bottom: 14px;
    color: var(--ssgm-notice-gold);
    font-size: 25px;
    line-height: 1;
}

.ssgm-guide-menu__title {
    display: block;
    width: 100%;
    overflow: hidden;
    color: var(--ssgm-notice-text);
    font-size: clamp(13px, 0.85vw, 15px);
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ssgm-guide-menu__arrow {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 17px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(41, 43, 40, 0.62);
    color: var(--ssgm-notice-text);
    font-size: 12px;
    transition: transform 0.2s ease;
}

.ssgm-guide-menu__item:hover .ssgm-guide-menu__arrow,
.ssgm-guide-menu__item:focus .ssgm-guide-menu__arrow {
    transform: translateX(4px);
}

@media (min-width: 1200px) {
    .ssgm-notice-guide .row > .col-xl-6 {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
    }
}

@media (max-width: 1199.98px) {
    .ssgm-notice-guide {
        padding: 60px 0 80px;
    }

    .ssgm-notice-guide__column,
    .ssgm-notice-guide .col-xl-6:last-child .ssgm-notice-guide__column {
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    .ssgm-notice-guide {
        padding: 46px 0 62px;
    }

    .ssgm-notice-guide__heading {
        margin-bottom: 18px;
    }

    .ssgm-notice-guide__title {
        font-size: 25px;
    }

    .ssgm-notice__link {
        grid-template-columns: 36px minmax(0, 1fr) 18px;
        gap: 10px;
        min-height: 82px;
        padding: 13px 0;
    }

    .ssgm-notice__icon {
        width: 36px;
        font-size: 20px;
    }

    .ssgm-notice__subject {
        font-size: 14px;
    }

    .ssgm-notice__date {
        display: none;
    }

    .ssgm-guide-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ssgm-guide-menu__item {
        min-height: 138px;
        padding: 20px 14px 15px;
    }

    .ssgm-guide-menu__icon {
        margin-bottom: 12px;
        font-size: 22px;
    }

    .ssgm-guide-menu__title {
        font-size: 14px;
    }
}

@media (max-width: 419.98px) {
    .ssgm-guide-menu__item {
        min-height: 130px;
        padding-inline: 11px;
    }

    .ssgm-guide-menu__title {
        font-size: 13px;
    }
}


/* =========================================================
   cta 섹션
   ========================================================= */
.ssgm-cta {
    --ssgm-cta-forest: #073d30;
    --ssgm-cta-forest-deep: #002f25;
    --ssgm-cta-gold: #bd9854;
    position: relative;
    width: 100%;
    padding: 62px 0 72px;
    overflow: hidden;
    background: linear-gradient(180deg, #fcfaf6 0%, #f9f5ed 100%);
}

.ssgm-cta__container {
    width: 100%;
    max-width: 1440px;
}

.ssgm-cta__box {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 50% 115%,
            rgba(20, 91, 69, 0.42) 0%,
            rgba(7, 61, 48, 0.18) 40%,
            rgba(7, 61, 48, 0) 68%
        ),
        linear-gradient(
            135deg,
            var(--ssgm-cta-forest-deep) 0%,
            var(--ssgm-cta-forest) 54%,
            #064334 100%
        );
    box-shadow: 0 18px 42px rgba(42, 33, 17, 0.12);
}

.ssgm-cta__box::before,
.ssgm-cta__box::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(189, 152, 84, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.ssgm-cta__box::before {
    width: 440px;
    height: 440px;
    top: -300px;
    left: -160px;
}

.ssgm-cta__box::after {
    width: 520px;
    height: 520px;
    right: -220px;
    bottom: -410px;
}

.ssgm-cta__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 330px;
    padding: 42px 32px;
    text-align: center;
    color: #fff;
}

.ssgm-cta__title {
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(28px, 2.2vw, 40px);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.045em;
    word-break: keep-all;
    text-align: center;
}

.ssgm-cta__title-line {
    display: block;
    width: 44px;
    height: 1px;
    margin: 20px auto 18px;
    background: var(--ssgm-cta-gold);
}

.ssgm-cta__info {
    text-align: center;
}

.ssgm-cta__capacity {
    display: block;
    margin-bottom: 3px;
    color: var(--ssgm-cta-gold);
    font-size: clamp(17px, 1.25vw, 22px);
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.ssgm-cta__date {
    margin: 0;
    color: #fff;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.45;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.ssgm-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    min-height: 50px;
    margin-top: 22px;
    padding: 11px 28px;
    border: 1px solid var(--ssgm-cta-gold);
    border-radius: 9px;
    background: var(--ssgm-cta-gold);
    color: #fff;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.ssgm-cta__button:hover,
.ssgm-cta__button:focus {
    transform: translateY(-2px);
    border-color: #d0ad69;
    background: #d0ad69;
    color: #fff;
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991.98px) {
    .ssgm-cta {
        padding: 54px 0 64px;
    }

    .ssgm-cta__box,
    .ssgm-cta__content {
        min-height: 310px;
    }

    .ssgm-cta__content {
        padding: 40px 28px;
    }
}

@media (max-width: 767.98px) {
    .ssgm-cta {
        padding: 44px 0 56px;
    }

    .ssgm-cta__box,
    .ssgm-cta__content {
        min-height: 300px;
    }

    .ssgm-cta__box {
        border-radius: 17px;
    }

    .ssgm-cta__content {
        padding: 38px 22px;
    }

    .ssgm-cta__title {
        max-width: 520px;
        font-size: clamp(24px, 7vw, 31px);
    }

    .ssgm-cta__title-line {
        margin: 17px auto 15px;
    }

    .ssgm-cta__capacity {
        font-size: 17px;
    }

    .ssgm-cta__date {
        font-size: 15px;
    }

    .ssgm-cta__button {
        min-width: 140px;
        min-height: 48px;
        margin-top: 19px;
        font-size: 14px;
    }
}

.ssgm-cta__info .cta-status {
    display: inline-block;
    background-color: #F58220;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin: 10px auto;
}
.ssgm-cta__info .cta-status-0 {
    background-color: #9e9e9e;
}


.ssgm-cta__actions {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
}

.ssgm-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 172px;
    min-height: 50px;
    padding: 11px 24px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.ssgm-cta__button i {
    flex: 0 0 auto;
    font-size: 14px;
}

.ssgm-cta__button:hover,
.ssgm-cta__button:focus {
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.18);
}

/* 개인 참가신청: 샴페인 골드 */
.ssgm-cta__button--personal {
    border-color: #bd9854;
    background: #bd9854;
    color: #fff;
}

.ssgm-cta__button--personal:hover,
.ssgm-cta__button--personal:focus {
    border-color: #d0ad69;
    background: #d0ad69;
    color: #fff;
}

/* 단체 참가신청: 밝은 포레스트 그린 */
.ssgm-cta__button--group {
    border-color: #477d69;
    background: #477d69;
    color: #fff;
}

.ssgm-cta__button--group:hover,
.ssgm-cta__button--group:focus {
    border-color: #59917c;
    background: #59917c;
    color: #fff;
}

/* 단체신청서 다운로드: 흰색 */
.ssgm-cta__button--download {
    border-color: rgba(255, 255, 255, 0.92);
    background: #fff;
    color: #073d30;
}

.ssgm-cta__button--download:hover,
.ssgm-cta__button--download:focus {
    border-color: #f3ead8;
    background: #f3ead8;
    color: #002f25;
}

@media (max-width: 991.98px) {
    .ssgm-cta__button {
        min-width: 162px;
        padding-inline: 20px;
    }
}

@media (max-width: 767.98px) {
    .ssgm-cta__actions {
        gap: 9px;
        margin-top: 20px;
    }

    .ssgm-cta__button {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        min-height: 48px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .ssgm-cta__button--download {
        flex-basis: 100%;
    }
}

@media (max-width: 419.98px) {
    .ssgm-cta__actions {
        flex-direction: column;
    }

    .ssgm-cta__button {
        width: 100%;
    }
}












/* 서브 */
.event-overview-page {
    background: #FAF8F2;
    margin-top:150px;
}
.event-overview-page .event-overview-visual {
    min-height: 390px;
    padding: 120px 20px 0;
    color: #FFFFFF;
    text-align: center;
    border-radius: 26px;
}
.event-overview-page .event-overview-visual._bg_01 {
    background: linear-gradient(135deg, rgb(168 161 24 / 94%), rgb(106 151 159 / 84%)), url('/images/common/main_bg_sub_01.jpg') center 42% / cover no-repeat;
}
.event-overview-page .event-overview-visual._bg_02 {
    background: linear-gradient(135deg, rgb(168 161 24 / 94%), rgb(106 151 159 / 84%)), url('/images/common/main_bg_sub_01.jpg') center 42% / cover no-repeat;;
}
.event-overview-page .event-overview-visual._bg_03 {
    background: linear-gradient(135deg, rgb(168 161 24 / 94%), rgb(106 151 159 / 84%)), url('/images/common/main_bg_sub_01.jpg') center 42% / cover no-repeat;
}
.event-overview-page .event-overview-visual__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #F7B267;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
}
.event-overview-page .event-overview-visual__title {
    margin: 0 0 16px;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.04em;
}
.event-overview-page .event-overview-visual__text {
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    text-align: center;
    word-break: keep-all;
}
.event-overview-page .event-overview-location {
    background: #FFFFFF;
    border-bottom: 1px solid #E8EBDD;
}
.event-overview-page .event-overview-location__inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #6A7162;
    font-size: 14px;
}

/*서브 - 가로메뉴*/
.sub-visual-tab {  margin:40px 0 0 0; padding:20px 0 0 0; border-bottom: solid 0px #8a8a8a; max-width:1400px; margin:50px auto 0; padding:0; }
.sub-visual-tab ul { display: flex; padding: 0; margin: 0; width: 100%; height: auto;}
.sub-visual-tab li { flex: 0 0 20%; width:20%; }
.sub-visual-tab a { display: flex; align-items: center; justify-content: center; position: relative; padding:5px 10px; height:50px; font-size: 1.1rem; color: #000;}
.sub-visual-tab a::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px;}
.sub-visual-tab li a.active { color: #fff; background-color: #8a8a8a; border-radius:16px;;}

.sub-tab-list { margin-top: 0; padding-bottom: 70px;}
.sub-tab-list li { position: relative; width: auto;}
.sub-tab-list li:not(:last-child)::before { content: ''; position: absolute; top: 0; bottom: 0; right: -2px; margin: auto; width: 4px; height: 4px; background: #cccccc; border-radius: 50%; }
.sub-tab-list li a.active { color: #13998e; }
.sub-tab-list a { padding:0 20px; font-size: 20px; color: #666666; }
.sub-tab-list .sub-menu-tab { justify-content: center; }

@media screen and (max-width: 1024px) {
    .sub-visual-tab { margin-bottom: 5px; padding: 4px 0 0;  width: 100%; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch;}
    .sub-visual-tab::-webkit-scrollbar { display: none;}
    .sub-visual-tab ul { margin: 0; padding:0; max-width: none;}
	.sub-visual-tab li { flex: 1 0 auto; width:auto;}
	.sub-visual-tab li:last-child { margin-right: 0; }
	.sub-visual-tab a { height: 40px; font-size: 16px; padding:8px 16px; }
    .sub-visual-tab li a.active {border-radius: 0;}
    .event-overview-page .event-overview-visual__title {font-size: 6vw;}
    #contents {
        position: relative;
        float: right;
        width: 100%;
        max-width: 100%;
        padding-bottom: 100px;
        margin-top: 10px;
    }
}

/* 타이틀 */
.wrap_sub .sec-sub-title {
    color: #399b99;
    letter-spacing: 3px;
    font-size: 0.6rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.wrap_sub .sec-title {
    font-size: 2rem;
    font-weight: 500;
    color: #2c2540;
    margin-bottom: 10px;
}

.wrap_sub .sec-desc {
    color: #7b768f;
    font-size: 0.8rem;;
}

/* 서브 공통 */
.wrap_sub .event-card {
  margin: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  padding:80px 40px;
}
@media screen and (max-width: 1024px) {
    .wrap_sub {padding:40px 0 60px;}
    .wrap_sub .event-card {margin: 20px; padding:40px 20px;}

}

.tbl_01 {width:100%; margin:auto;}
.tbl_01 th, .tbl_overview td{border-bottom:1px solid #eee;text-align:left;vertical-align:top}
.tbl_01 th{padding:15px 0 0 10px;font-size:1.0rem; font-weight:500}
.tbl_01 td{padding:15px; font-size:1.0rem;}
.tbl_01 td ul li{position:relative;padding-left:94px;}
.tbl_01 td ul li em{position:absolute;left:0;}
@media screen and (max-width: 1024px) {
    .tbl_01 th{display:block;padding:15px 10px}
    .tbl_01 td{display:block;}
}

.note_box{font-size:1rem;color:#666;line-height:1.5;}
.note_box + .note_box{margin-top:40px}
.note_box h3{text-align:left;color:#2f5a8e;}
.note_box h4{font-size:1.2rem;color:#333;}
.note_box h5{font-size:1rem;color:#0098cf;}
.note_box h3, .note_box h4, .note_box h5, .note_box p{margin-bottom:10px}
.note_box ul{}
.note_box li{position:relative;padding-left:14px;}
.note_box li:before{content:'';position:absolute;left:0;top:9px;width:4px;height:4px;background:#ddd}
.note_box .list-dot li:before{content:'';position:absolute;left:0;top:9px;width:4px;height:4px;background:#00adef}
.note_box .list-dot li:before{content:'';position:absolute;left:0;top:9px;width:4px;height:4px;background:#00adef}
.note_box .list-dot li.no-desc:before{content:'';position:absolute;left:0;top:9px;width:4px;height:4px;background:none;}
.note_box ol li{}
.note_box li + li{margin-top:8px;}
.note_box_pd p, .note_box_pd ul{padding-left:24px}
.note_box li strong{font-weight:500;color:#000}
.note_box .deco_line{text-decoration:underline;}
.note_box .deco_point{color:#00adef;}
.group_bx{padding:20px 15px;background:#f7f7f7;}
.group_bx li:before{display:none;}

.tblBox{ margin-top:30px; margin-bottom:10px;}
.tblBox .tblTit{ margin-bottom: 30px; font-size: 28px; font-weight: 400; text-align: center; }
.tblBox table{ width: 100%; border: 1px solid #ddd; }
.tblBox table tr{ border-bottom: 1px solid #ddd; }
.tblBox table th{ padding: 16px 8px; font-size: 1.1rem; text-align: center; border-bottom: 1px solid #ddd; background-color:#f7f7f7;color:#555; font-weight:500; }
.tblBox table td{ padding: 12px 10px; font-size: 1.0rem; text-align: center; border-left: 1px solid #ddd;font-weight: 300;}


.tbl_01 .sponsor-logos {
    display: flex; gap: 30px; flex-wrap: wrap; font-weight: 500; color: #1F2A1F;
}
.tbl_01 .logo-item {
    padding: 8px 20px; background: #fff; border-radius: 6px; font-size: 15px; border: solid 1px  #ccc;
}

.add-member-wrap{}
.add-member-wrap table{}
.add-member-wrap table thead{background:#f4f4f4;}
.add-member-wrap table th{padding:5px 8px;border:1px solid #ddd;text-align:left;background-color:#f5f5f5;font-weight:400;height:49px;}
.add-member-wrap table td{padding:5px 8px;border:1px solid #ddd;text-align:left;background-color:#f9f9f9;}
.add-member-wrap table label{font-weight:300;}
span.state-wait{color:#999;}
span.state-end{color:#222;}
.add-member-wrap h3 { font-size: 1.25rem;}


.headline {
    background: url('/images/common/ti_bg_icon_50x50.png?2026') no-repeat 0 10%;
    display: block;
    margin: 50px 0 15px;
    border-bottom: 1px solid #d7b8f3;
    padding: 10px 18px 12px 30px;
    font-size: 1.3rem;
}
.headline small {
    color:#b2b2b2;font-size:0.9rem;font-weight:300;padding-left:20px;
}

.con_tb td > .f-left {
    position: relative;
    display: inline-block;
    float: none;
    margin: 0 10px 10px 0;
}

.con_tb td > .f-left label {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 58px;
    padding: 12px 22px;
    margin: 0;
    background-color: #FFFFFF;
    border: 1px solid #D9DED2;
    border-radius: 12px;
    color: #3F4A25;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.25s ease;
}

.con_tb td > .f-left label:hover {
    background-color: #F7F8F2;
    border-color: #7A8450;
    box-shadow: 0 8px 20px rgba(63, 74, 37, 0.1);
    transform: translateY(-2px);
}

.con_tb td > .f-left input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.con_tb td > .f-left label:has(input[type="radio"]:checked) {
    background-color: #3F4A25;
    border-color: #3F4A25;
    color: #FFFFFF;
    box-shadow: 0 10px 24px rgba(63, 74, 37, 0.25);
}

.con_tb td > .f-left label:has(input[type="radio"]:focus-visible) {
    outline: 3px solid rgba(245, 130, 32, 0.35);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .con_tb td > .f-left {
        display: block;
        width: 100%;
        margin: 0 0 10px;
    }

    .con_tb td > .f-left label {
        width: 100%;
        min-width: 0;
    }
    .event-overview-page {
        margin-top: 75px;
    }
    .event-overview-page .event-overview-visual {
        min-height: 300px;
        padding: 80px 20px 0;
        border-radius: 0;
    }
}

.ssgm-event-info .col-xl-6:last-child {
    min-width: 0;
}

.ssgm-event-info__courses,
.ssgm-course-grid {
    width: 100%;
    max-width: 100%;
}