/* ÀüÃ¼ 1200px ·¡ÆÛ */
.es3-wrap {
  width: 1200px;
  margin: 60px auto 80px;
}

/* »ó´Ü Å¸ÀÌÆ² */

/* .es3-header {
    text-align: left;
    margin-bottom: 25px;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 21px;
}
.es3-header h1 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 6px;
}
.es3-header p {
  font-size: 14px;
  color: #757b86;
  line-height: 1.6;
} */

.event-banner {
  height: 250px;
  position: relative;
  background: url("/image/event_bg03.jpg") top/cover no-repeat;
  color: #fff;
}

/* ÅØ½ºÆ® ¹Ú½º */
.event_title {
  position: relative;
  width: 1200px;
  height: 250px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding-left: 40px; */
}

/* ¡Ú ÅØ½ºÆ® µÚ¿¡ µé¾î°¡´Â Glow ±¸¸§ */
.event_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 220px;
  background: radial-gradient(circle at 30% 40%, 
              rgba(35, 213, 255, 0.32), 
              rgba(164, 75, 255, 0.22), 
              rgba(0, 0, 0, 0) 70%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

/* ÅØ½ºÆ®µéÀº À§¿¡ ¿Ã¶ó¿Àµµ·Ï */
.event_title span,
.event_title .subtitle01,
.event_title .subtitle02 {
  position: relative;
  z-index: 1;
}

/* EVENT */
.event_title span {
  display: inline-block;
  font-size: 12px;
  /* color: #7c7f88; */
  color:#8dfff7;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

/* ¸ÞÀÎ Å¸ÀÌÆ² */
.subtitle01 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 14px;
  
}


/* ¼­ºê ÅØ½ºÆ® */
.subtitle02 {
  font-size: 14px;
  color: #c8ccd5;
  position: relative;
}
.es3-card-link {
  display: block;
  width: 588px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
}

.es3-card-link + .es3-card-link {
  margin-left: 24px; /* 2°³ »çÀÌ °£°Ý */
}

/* Ä«µå È£¹ö È¿°ú */
.es3-card-link:hover .es3-card {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  transition: 0.2s ease;
}
/* Ä«µå ·¹ÀÌ¾Æ¿ô (2¿­) */
.es3-row {
  display: flex;
  margin-bottom: 24px;
}
.es3-card {
  width: 588px; /* (1200 - 24) / 2 */
  border-radius: 14px;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.es3-card + .es3-card {
  margin-left: 24px;
}

/* ½æ³×ÀÏ */
.es3-thumb {
  height: 245px;
  background-color: #ddd;
  overflow: hidden;
}
.es3-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ä«µå ³»¿ë */
.es3-body {
  padding: 14px 18px 16px;
}
.es3-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.es3-date {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.es3-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* »óÅÂ ¹îÁö: ÁøÇà / ±â°£Á¾·á */
.es3-status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}
.es3-status.ing {
  background-color: #ffe2e2;
  color: #d93025;
}
.es3-status.end {
  background-color: #e0e3e7;
  color: #74757a;
}

/* ÄíÆù ¹öÆ° */
.es3-btn {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 999px;
  border: 1px solid #1c4b84;
  background-color: #ffffff;
  color: #1c4b84;
  font-weight: 600;
  cursor: pointer;
}
.es3-btn i {
  margin-left: 10px;
  font-size: 14px;
}
.es3-btn:hover {
  background-color: #1c4b84;
  color: #ffffff;
}
/* ±â°£Á¾·á ¹öÆ° ºñÈ°¼ºÈ­ */
.es3-btn.disabled {
  background-color: #e5e7eb;
  border-color: #cbd0d6;
  color: #9ca3af;
  cursor: default;
  pointer-events: none;
}
/* ¸ð´Þ ¿À¹ö·¹ÀÌ */
.es3-modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.es3-modal.show {
  display: flex;
}

/* ¸ð´Þ ¹Ú½º */
.es3-modal-box {
  width: 360px;
  max-width: 90%;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px 22px 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  text-align: center;
}

.es3-modal-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.es3-modal-text {
  font-size: 13px;
  color: #555b66;
  line-height: 1.6;
  margin-bottom: 18px;
}

.es3-modal-btns {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.es3-modal-btn {
  display: inline-block;
  min-width: 120px;
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}

.es3-modal-btn.sub {
  background-color: #f3f4f6;
  border-color: #e5e7eb;
  color: #4b5563;
}

.es3-modal-btn.primary {
  background-color: #1c4b84;
  border-color: #1c4b84;
  color: #ffffff;
}

.es3-modal-btn.sub:hover {
  background-color: #e5e7eb;
}

.es3-modal-btn.primary:hover {
  background-color: #163b67;
}