/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "NotoSans", "Helvetica Neue";
  line-height: 1.6;
  color: #1d1d1d;
  background-color: #ffffff;
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 100;
  border-bottom: 1px solid #e5e5e5;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  height: 32px;
}

.logo-icon img {
  height: 100%;
  width: auto;
  /* width:148px;
  height:51px;
  margin-top: -10px; */
}

.gnb {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin: 0 auto;
}

.nav-item {
  text-align: center;
  color: #1d1d1d;
  text-decoration: none;
  min-width: 144px;
  width: 144px;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #246beb;
}

.menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.menu-button:hover {
  opacity: 0.7;
}

.menu-button img {
  width: 24px;
  height: 24px;
}

/* Main Content */
.main {
  padding: 40px 80px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* Action Section - Bento Grid */
.action-section {
  display: grid;
  grid-template-columns: 1fr 470px 308px;
  gap: 16px;
  margin-bottom: 16px;
}

.action-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 149px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(36, 107, 235, 0.03) 0%,
    rgba(36, 107, 235, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.action-card:hover::before {
  opacity: 1;
}

.action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #246beb;
}

.action-card.wide {
  grid-column: span 1;
  justify-content: flex-start;
}

.action-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  z-index: 1;
}

.action-content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #1d1d1d;
  margin-bottom: 4px;
}

.action-content p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #717171;
}

.action-icon {
  flex-shrink: 0;
  z-index: 1;
}

.action-icon img,
.action-icon svg {
  border-radius: 8px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.section-wrapper {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  /* height: 500px; */
  max-width: 1296px;
  /* margin-bottom: 16px; */
  padding: 0;
  box-sizing: border-box;
  flex-wrap: wrap; /* 핵심 */
}

/* Banner Section */
.banner-section {
  position: relative;
  width: 956px;
  height: 500px;
  margin: 0 auto 32px auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: none;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s;
  z-index: 1;
  pointer-events: none;
}

.banner-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #001c50 45%, rgba(255, 255, 255, 0) 75%);
  background-size: cover;
  background-position: center;
}

.banner-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
  color: white;
}

.banner-subtitle {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
  opacity: 0.9;
}

.banner-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.banner-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 4px;
}

.banner-arrow {
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  /* transition: background-color 0.3s; */
}

.banner-arrow:hover {
  /* background: rgba(0, 0, 0, 0.6); */
}

.banner-arrow.prev img {
  transform: rotate(180deg);
}

.banner-arrow img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.banner-page-counter {
  color: white;
  padding: 4px 12px;
  font-size: 14px;
  z-index: 3;
  align-items: center;
}

.banner-playback-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.playback-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.playback-button svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* Service Section */
.service-section {
  width: 308px;
  /* gap: 16px; */
  margin-left: auto;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.service-section > .service-card:not(:last-child) {
  /* margin-bottom: 16px; */
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}

.login-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 20px 20px;
  margin-bottom: 16px;
  text-align: center;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.service-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: #1d1d1d;
}

.service-description {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #717171;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: #0382CA;
  border: none;
  border-radius: 100px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 268px;
  width: 100%;
  justify-content: center;
}

.cta-button:hover {
  background: #015FAE;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(42, 92, 150, 0.3);
}

.customer-card {
  padding: 23px 30px;
}

.customer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-section h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1d;
}

.phone-number {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #1d1d1d;
  margin: 4px 0;
}

.info-section p {
  font-size: 12px;
  line-height: 1.5;
  color: #1d1d1d;
}

.hours p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #1d1d1d;
}

.location {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #1d1d1d;
}

.divider {
  height: 1px;
  background: #c6c6c6;
  margin: 8px 0;
}

/* Notice Section */
.notice-section {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 30px;
  width: 416px;
  height: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.notice-section:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}

.notice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration-line: none;
}

.notice-header h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: #1d1d1d;
  text-decoration: none;
}

.more-button {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  color: #1d1d1d;
  transition: all 0.2s ease;
}

.more-button:hover {
  color: #246beb;
  transform: scale(1.1);
}

.notice-divider {
  height: 1px;
  background: #c6c6c6;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}

.notice-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.notice-item:hover {
  background: #f8f9fa;
  margin: 0 -8px;
  padding: 4px 8px;
  border-radius: 8px;
}

.notice-item h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #1d1d1d;
  width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-item time {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #555555;
  flex-shrink: 0;
}

/* Quick Links Section */
.quick-links-section {
  width: 100%;
  max-width: 848px;
  margin: 0 auto; /* 가운데 정렬 */
  padding: 0; /* 모바일 대응 여백 */
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.quick-links-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.quick-links-container {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.quick-link {
  background: #ffffff;
  /* border: 1px solid #e5e5e5; */
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  flex-shrink: 0;
}

.quick-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(36, 107, 235, 0.03) 0%,
    rgba(36, 107, 235, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* .quick-link:hover::before {
  opacity: 1;
}

.quick-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: #246beb;
} */

.quick-link.highlighted {
  background: rgba(255, 255, 255, 0.33);
  backdrop-filter: blur(10px);
}

.quick-icon {
  width: 98px;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.quick-icon img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.quick-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  gap: 8px;
}

.quick-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.quick-header h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #1d1d1d;
}

.arrow-icon {
  flex-shrink: 0;
}

.quick-content p {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: #555555;
}

/* Footer */
.footer {
  background: #f0f0f0;
  padding: 40px 0;
  margin-top: 60px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  gap: 24px;
}

.footer-logo {
  width: 200px;
}

.gov-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-content {
  flex: 1;
  display: flex;
  gap: 24px;
}

.footer-info-links-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 0;
}

.footer-info {
  line-height: 1.5;
}

.footer-links {
  flex-shrink: 0;
  gap: 24px;
  display: flex;
  margin-top: 4px;
}

.contact-info,
.hours-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info p,
.hours-info p {
  font-size: 17px;
  line-height: 1.5;
  color: #1d1d1d;
}

.hours-info p:first-child {
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #1d1d1d;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-button:hover {
  color: #246beb;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #000000;
  transition: all 0.2s ease;
}

.social-link:hover {
  color: #246beb;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 16px;
  border-top: 1px solid #d8d8d8;
}

.policy-links {
  display: flex;
  gap: 24px;
  flex: 1;
}

.policy-link {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: #1d1d1d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.policy-link.privacy {
  color: #003675;
  font-weight: 700;
}

.policy-link:hover {
  color: #246beb;
}

.copyright p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #555555;
}

@media (max-width: 1448px) {
  .banner-section {
    width: 100%;
    margin-bottom: 0px;
  }

  .service-section {
    width: 100%;
    gap: 16px;
    margin: 0 auto 16px auto;
    flex-direction: row;
  }

  .login-card {
    min-width: 416px;
    margin-bottom: 0px;
  }

  .customer-card {
    width: 100%;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header-container,
  .main {
    padding-left: 40px;
    padding-right: 40px;
  }

  .action-section {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .action-card.wide {
    grid-column: span 2;
  }

  .banner-section {
    width: 100%;
  }

  .login-card {
    width: 100%;
    min-width: 0;
    max-width: 402px;
  }

  .notice-section {
    width: 100%;
    max-width: 500px;
  }

  .quick-links-section {
    width: 100%;
    max-width: 848px;
    flex-wrap: wrap;
  }

  .quick-links-section .quick-link {
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .gnb {
    display: none;
  }

  .header-container {
    padding: 16px;
  }

  .action-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .action-card.wide {
    grid-column: span 1;
  }

  .banner-section {
    height: 300px;
    margin-bottom: 20px;
  }

  .banner-subtitle {
    font-size: 20px;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-content {
    bottom: 30px;
    left: 30px;
  }

  .service-section,
  .notice-section,
  .quick-links-section {
    width: 100%;
  }

  .quick-links-section {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .policy-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .footer-info-links-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-links {
    gap: 12px;
  }
  .banner-section {
    min-height: 200px;
    margin-bottom: 20px;
  }
  .banner-content {
    left: 24px;
    bottom: 24px;
  }
  .banner-title {
    font-size: 28px;
  }
  .banner-subtitle {
    font-size: 16px;
  }
  .service-section {
    width: 100%;
    max-width: 100%;
    gap: 16px;
    margin: 0 0 16px 0;
  }
  .main-row {
    flex-direction: column;
    gap: 16px;
  }
  .notice-section,
  .quick-links-section {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  .quick-links-container {
    flex-direction: column;
    gap: 12px;
  }
  .quick-link {
    width: 100%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.action-card,
.service-card,
.notice-section,
.quick-link {
  animation: fadeInUp 0.6s ease forwards;
}

.action-card:nth-child(2) {
  animation-delay: 0.1s;
}

.action-card:nth-child(3) {
  animation-delay: 0.2s;
}

.quick-link:nth-child(2) {
  animation-delay: 0.1s;
}

.quick-link:nth-child(3) {
  animation-delay: 0.2s;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
  outline: 2px solid #246beb;
  outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.main-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  /* margin-top: 32px; */
  align-items: flex-start;
}

@media (max-width: 900px) {
  .main-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section-wrapper {
    gap: 0px;
  }
  .notice-section,
  .quick-links-section {
    width: 100%;
  }
}

.notice-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  transition: all 0.2s ease-in-out;
}
.notice-section a{
  text-decoration: none;
}

.quick-links-section {
  background: transparent;
  border-radius: 16px;
  height: 100%;
}

/* ===== 피그마 기반 스마트워크센터 Footer 스타일 ===== */
.footer-new {
  background-color: #f8f9fa;
  color: #222;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 15px;
  margin-top: 60px;
  border-top: 1px solid #e5e5e5;
}
.footer-inner {
  max-width: 1296px;
  margin: 0 auto;
  padding: 40px 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-gov-logo {
  height: 36px;
  width: auto;
}
.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #1d1d1d;
  letter-spacing: -0.02em;
}
.footer-sns-area {
  display: flex;
  gap: 12px;
}
.footer-sns img {
  width: 32px;
  height: 32px;
  display: block;
  transition: filter 0.2s;
}
.footer-sns:hover img {
  filter: brightness(0.7);
}
.footer-links {
  display: flex;
  gap: 24px;
  margin: 0 0 8px 0;
}
.footer-link {
  color: #003675;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #174ea6;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  color: #444;
}
.footer-info-address {
  font-weight: 400;
  margin-bottom: 2px;
}
.footer-info-contact {
  color: #888;
  font-size: 14px;
}
.footer-info-contact .divider {
  margin: 0 8px;
}
.footer-bottom {
  border-top: 1px solid #e5e5e5;
  margin-top: 18px;
  padding: 18px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-policies {
  display: flex;
  gap: 18px;
}
.footer-policy {
  color: #888;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-policy.strong {
  color: #003675;
  font-weight: 700;
}
.footer-policy:hover {
  color: #174ea6;
}
.footer-copy {
  color: #bbb;
  font-size: 13px;
}
@media (max-width: 1024px) {
  .footer-inner {
    padding: 32px 16px 0 16px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.footer-info-sns-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 0;
}
.footer-info {
  flex: 1 1 0;
}
.footer-sns-area {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 900px) {
  .footer-info-sns-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* GNB Dropdown Styles */
.nav-item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(36, 107, 235, 0.1);
  padding: 12px 0;
  z-index: 300;
  animation: fadeInUp 0.25s;
}

.nav-item-wrapper:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.dropdown-link {
  display: block;
  padding: 10px 32px 10px 24px;
  font-family: 'Pretendard GOV', 'Noto Sans KR', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1d;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  line-height: 1.33;
}

.dropdown-link:hover {
  background: #f5f8ff;
  color: #246beb;
}

.gnb {
  position: relative;
  gap: 56px;
}

/* Sitemap Dropdown (전체 사이트맵 드롭다운) */
.sitemap-dropdown {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 64px; /* header 높이에 맞게 조정 */
  width: 100vw;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 12px 32px rgba(36, 107, 235, 0.1);
  padding: 1px 20px 24px 62px;
  z-index: 300;
  animation: fadeInUp 0.25s;
  justify-content: center;
}
@media (min-width: 900px) {
  .header:hover .sitemap-dropdown,
  .header:focus-within .sitemap-dropdown {
    display: flex;
  }
}

@media (max-width: 700px) {
  .sitemap-dropdown.open {
    display: flex;
  }
}
.sitemap-dropdown {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.sitemap-inner {
  width: 744px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
}
.sitemap-group {
  display: flex;
  flex-direction: column;
  min-width: 140px;
  width: 140px;
  
}
.sitemap-title,
.sitemap-link {
  white-space: nowrap;
}
.sitemap-title {
  font-family: 'Pretendard GOV', 'Noto Sans KR', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 8px;
  padding-left: 8px;
}
.sitemap-link {
  display: block;
  padding: 9px 0;
  text-align: center;
  font-family: 'Pretendard GOV', 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 450;
  color: #1d1d1d;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  line-height: 1.00;
}
.sitemap-link:hover {
  background: #f5f8ff;
  color: #246beb;
}
.sitemap-link.mobile-title {
  display: none;
}
@media (max-width: 900px) {
  .sitemap-dropdown {
    padding: 20px 12px;
    position: fixed;
    height: calc(100vh - 40px);
  }
  .sitemap-inner {
    flex-direction: column;
    margin: 0 auto;
    gap: 0;
  }
  .sitemap-group {
    margin: 0 auto;
  }
  .sitemap-divider {
    width: 100%;
    height: auto;
    margin: 10px 0;
    border-top: 1px solid grey;
  }
  .sitemap-link.mobile-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
  }
}

.action-section a {
  text-decoration: none;
  outline: none; /* 클릭 시 나타나는 테두리 제거 */
  border: none;  /* 요소 자체의 테두리 제거 */
}

*:focus { outline:none; }

a:focus,
a:active {
  outline: none;
}

.notice-list ul li a {
  text-decoration: none;
  outline: none; /* 클릭 시 나타나는 테두리 제거 */
  border: none;  /* 요소 자체의 테두리 제거 */
}

.quick-links-container a {
  text-decoration: none;
  outline: none; /* 클릭 시 나타나는 테두리 제거 */
  border: none;  /* 요소 자체의 테두리 제거 */
}

