@charset "UTF-8";

:root {
  --koaa-ink: #12151c;
  --koaa-muted: #69707d;
  --koaa-line: #dde2e8;
  --koaa-surface: #f6f8fb;
  --koaa-soft: #eef5f8;
  --koaa-blue: #0b6fb6;
  --koaa-cyan: #20bad1;
  --koaa-red: #d82945;
  --koaa-green: #57940e;
  --koaa-yellow: #f6c85f;
}

html {
  scroll-behavior: smooth;
}

body.koaa-site {
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: var(--koaa-ink);
  background: #fff;
  word-break: keep-all;
  overflow-x: hidden;
}

.koaa-site h1,
.koaa-site h2,
.koaa-site h3,
.koaa-site h4,
.koaa-site h5,
.koaa-site h6,
.koaa-site .sub-font {
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  letter-spacing: 0;
}

.koaa-site a {
  color: inherit;
}

.koaa-site .wow {
  visibility: visible !important;
  opacity: 1 !important;
  animation-name: none !important;
}

.koaa-site .logo {
  max-height: 42px;
  width: auto;
}

.koaa-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 250px;
}

.koaa-navbar .navbar-brand .logo {
  display: block;
  width: min(250px, 58vw);
  max-height: 46px;
  object-fit: contain;
}

.koaa-site .loader .logo {
  max-height: 54px;
  filter: brightness(0) invert(1);
}

.koaa-site .loader {
  display: none !important;
}

@keyframes koaaLoaderOut {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.top-nav-st7.koaa-topbar {
  color: #eef5ff;
  background: var(--koaa-ink);
}

.top-nav-st7.koaa-topbar a,
.top-nav-st7.koaa-topbar .txt {
  color: #eef5ff;
  opacity: 0.92;
}

.tc-navbar-st7.koaa-navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--koaa-line);
  backdrop-filter: blur(14px);
}

.tc-navbar-st7.koaa-navbar .navbar-nav .nav-item .nav-link {
  margin: 0 12px;
  color: var(--koaa-ink);
  text-transform: none;
}

.tc-navbar-st7.koaa-navbar .dropdown-toggle::after {
  display: none !important;
}

.tc-navbar-st7.koaa-navbar .dropdown-menu {
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--koaa-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(18, 21, 28, 0.12);
}

.tc-navbar-st7.koaa-navbar .dropdown-item {
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 15px;
}

.tc-navbar-st7.koaa-navbar .dropdown-item:hover {
  background: var(--koaa-soft);
  color: var(--koaa-blue);
}

.koaa-navbar .navbar-toggler {
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--koaa-line);
  border-radius: 6px;
  box-shadow: none;
}

.koaa-navbar .navbar-toggler-icon {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--koaa-ink);
  background-image: none;
}

.koaa-navbar .navbar-toggler-icon::before,
.koaa-navbar .navbar-toggler-icon::after {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--koaa-ink);
}

.koaa-navbar .navbar-toggler-icon::before {
  top: -7px;
}

.koaa-navbar .navbar-toggler-icon::after {
  top: 7px;
}

.koaa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.koaa-btn:hover {
  transform: translateY(-2px);
}

.koaa-btn-primary {
  color: #fff !important;
  background: var(--koaa-red);
}

.koaa-btn-primary span,
.koaa-btn-primary i {
  color: #fff !important;
}

.koaa-btn-outline {
  color: var(--koaa-ink);
  border: 1px solid var(--koaa-ink);
}

.tc-header-st7.koaa-hero {
  padding: 72px 0 56px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 251, 0.82)),
    radial-gradient(circle at 84% 12%, rgba(32, 186, 209, 0.18), transparent 32%),
    linear-gradient(120deg, #fff 0%, #eef5f8 100%);
}

.koaa-hero .title-side {
  padding-bottom: 60px;
}

.koaa-hero h1 {
  line-height: 1.08;
}

.koaa-hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--koaa-blue);
  background: #e7f3f8;
  border: 1px solid #c8e4ee;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.koaa-hero .hero-copy {
  max-width: 560px;
  color: #4b5563;
  line-height: 1.75;
}

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

.koaa-hero .imgs .img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(18, 21, 28, 0.16);
}

.koaa-hero .imgs .hero-slide-img {
  padding: 0;
  background: #fff;
}

.koaa-hero .imgs .hero-slide-img img {
  object-fit: cover;
}

.koaa-hero .sub-info {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--koaa-line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(18, 21, 28, 0.08);
}

.koaa-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.koaa-stat {
  padding: 18px;
  border: 1px solid var(--koaa-line);
  border-radius: 8px;
  background: var(--koaa-surface);
}

.koaa-stat strong {
  display: block;
  color: var(--koaa-red);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.koaa-stat span {
  display: block;
  margin-top: 8px;
  color: var(--koaa-muted);
  font-weight: 700;
}

.koaa-section {
  padding: 92px 0;
}

.koaa-section-soft {
  background: var(--koaa-surface);
}

.koaa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--koaa-blue);
  font-size: 15px;
  font-weight: 800;
}

.koaa-section-title {
  max-width: 760px;
  margin-bottom: 36px;
}

.koaa-section-title h2 {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.12;
  font-weight: 800;
}

.koaa-section-title p {
  margin: 18px 0 0;
  color: var(--koaa-muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.service-tile {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 118px;
  padding: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--koaa-line);
  border-radius: 8px;
}

.service-tile::after {
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  content: "";
  background: rgba(32, 186, 209, 0.12);
  border-radius: 50%;
}

.service-tile .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  margin-right: 16px;
  color: #fff;
  background: var(--koaa-ink);
  border-radius: 8px;
}

.service-tile h3 {
  color: var(--koaa-ink);
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.service-tile p {
  margin: 6px 0 0;
  color: var(--koaa-muted);
  font-size: 14px;
}

.service-tile:hover {
  border-color: var(--koaa-cyan);
  box-shadow: 0 18px 36px rgba(18, 21, 28, 0.08);
}

.service-tile-lookup {
  grid-column: span 2;
  min-height: 146px;
  color: #fff !important;
  background:
    linear-gradient(135deg, rgba(18, 21, 28, 0.1), rgba(18, 21, 28, 0)),
    linear-gradient(135deg, #d82945 0%, #aa1830 100%);
  border-color: rgba(216, 41, 69, 0.25);
  box-shadow: 0 22px 46px rgba(216, 41, 69, 0.24);
}

.service-tile-lookup::after {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.14);
}

.service-tile-lookup .icon {
  width: 62px;
  height: 62px;
  flex-basis: 62px;
  color: var(--koaa-red);
  background: #fff;
  font-size: 24px;
  box-shadow: 0 14px 28px rgba(18, 21, 28, 0.14);
}

.service-tile-lookup h3,
.service-tile-lookup p,
.service-tile-lookup .tile-arrow,
.service-tile-lookup .tile-arrow i {
  color: #fff !important;
}

.service-tile-lookup h3 {
  max-width: 520px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.service-tile-lookup p {
  margin-top: 9px;
  font-size: 16px;
  opacity: 0.86;
}

.service-tile-lookup .tile-arrow {
  position: absolute;
  right: 22px;
  top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.notice-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: start;
}

.notice-board,
.calendar-card,
.about-card,
.network-card,
.contact-panel {
  background: #fff;
  border: 1px solid var(--koaa-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(18, 21, 28, 0.06);
}

.notice-board {
  padding: 26px;
}

.koaa-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  border: 0;
}

.koaa-tabs .nav-link {
  color: var(--koaa-muted);
  border: 1px solid var(--koaa-line);
  border-radius: 6px;
  font-weight: 800;
}

.koaa-tabs .nav-link.active {
  color: #fff;
  background: var(--koaa-ink);
  border-color: var(--koaa-ink);
}

.notice-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--koaa-line);
}

.notice-item:first-child {
  border-top: 0;
}

.notice-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 72px;
  text-align: center;
  background: var(--koaa-surface);
  border-radius: 8px;
}

.notice-date strong {
  color: var(--koaa-red);
  font-size: 27px;
  line-height: 1;
}

.notice-date span {
  margin-top: 5px;
  color: var(--koaa-muted);
  font-size: 13px;
  font-weight: 700;
}

.notice-item h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.38;
}

.notice-item p {
  margin: 0;
  color: var(--koaa-muted);
  line-height: 1.55;
}

.calendar-card {
  padding: 26px;
}

.calendar-card .month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-card .month h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  color: #4b5563;
  background: var(--koaa-surface);
  border-radius: 6px;
  font-weight: 700;
}

.calendar-grid .head {
  aspect-ratio: auto;
  padding: 7px 0;
  color: var(--koaa-muted);
  background: transparent;
  font-size: 12px;
}

.calendar-grid .sun {
  color: var(--koaa-red);
}

.calendar-grid .sat {
  color: var(--koaa-blue);
}

.calendar-grid .today {
  color: #fff;
  background: var(--koaa-green);
}

.activity-grid,
.business-grid,
.network-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.activity-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--koaa-line);
  border-radius: 8px;
}

.activity-card .img {
  height: 205px;
  overflow: hidden;
  background: var(--koaa-surface);
}

.activity-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.activity-card:hover .img img {
  transform: scale(1.05);
}

.activity-card .info {
  padding: 18px;
}

.activity-card h3 {
  min-height: 52px;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.42;
}

.activity-card p {
  margin: 0;
  color: var(--koaa-muted);
  font-weight: 700;
}

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

.about-card {
  padding: 28px;
}

.about-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--koaa-blue);
  border-radius: 8px;
  font-weight: 900;
}

.about-card:nth-child(2) .num {
  background: var(--koaa-red);
}

.about-card:nth-child(3) .num {
  background: var(--koaa-green);
}

.about-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
  font-weight: 800;
}

.about-card p {
  margin: 0;
  color: var(--koaa-muted);
  line-height: 1.75;
}

.business-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: #fff !important;
  background: var(--koaa-ink);
  border-radius: 8px;
  overflow: hidden;
}

.business-card:nth-child(2),
.business-card:nth-child(6) {
  background: var(--koaa-blue);
}

.business-card:nth-child(3) {
  background: #334155;
}

.business-card:nth-child(4) {
  background: var(--koaa-red);
}

.business-card:nth-child(5) {
  background: var(--koaa-green);
}

.business-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 28px;
}

.business-card h3 {
  color: #fff !important;
  margin: 26px 0 8px;
  font-size: 22px;
  font-weight: 800;
}

.business-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84) !important;
  line-height: 1.6;
}

.business-card-lookup {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    var(--koaa-red) !important;
}

.business-card-lookup::after {
  position: absolute;
  right: -34px;
  top: -34px;
  width: 120px;
  height: 120px;
  content: "";
  border: 22px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.business-card-lookup .icon {
  color: var(--koaa-red) !important;
  background: #fff;
}

.network-card {
  padding: 24px;
}

.network-card i {
  color: var(--koaa-red);
  font-size: 25px;
}

.network-card h3 {
  margin: 20px 0 10px;
  font-size: 21px;
  font-weight: 800;
}

.network-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.network-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  color: var(--koaa-muted);
  border-top: 1px solid var(--koaa-line);
}

.network-card li:first-child {
  border-top: 0;
}

.koaa-testimonials .testimonials-wrapper {
  background: #fff;
}

.koaa-testimonials .main-text {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.55;
}

.banner-strip {
  padding: 42px 0;
  background: #fff;
  border-top: 1px solid var(--koaa-line);
  border-bottom: 1px solid var(--koaa-line);
}

.banner-strip .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--koaa-line);
  border-radius: 8px;
}

.banner-strip img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.contact-panel {
  padding: 32px;
}

.contact-panel h3 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 800;
}

.contact-panel p {
  margin: 0 0 10px;
  color: var(--koaa-muted);
  line-height: 1.65;
}

.tc-footer-st7.koaa-footer {
  background: var(--koaa-ink);
  color: #fff;
}

.tc-footer-st7.koaa-footer .links-list a,
.tc-footer-st7.koaa-footer .links-list span,
.tc-footer-st7.koaa-footer .text,
.tc-footer-st7.koaa-footer .txt {
  color: rgba(255, 255, 255, 0.72);
}

.tc-footer-st7.koaa-footer .foot {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.footer-logo-box {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
}

.footer-logo-box img {
  max-height: 44px;
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--koaa-red);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(18, 21, 28, 0.22);
}

.koaa-subpage {
  background: #fff;
}

.koaa-sub-hero {
  position: relative;
  min-height: 360px;
  padding: 86px 0;
  color: #fff;
  overflow: hidden;
  background: #10151d;
}

.koaa-sub-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 21, 28, 0.9), rgba(18, 21, 28, 0.54)),
    var(--sub-hero-image, url("/assets/img/generated/koaa-city-banner.jpg")) center/cover no-repeat;
}

.koaa-sub-hero .container {
  position: relative;
  z-index: 1;
}

.koaa-sub-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 850;
}

.koaa-sub-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.75;
}

.koaa-subnav {
  position: sticky;
  top: 80px;
  z-index: 30;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--koaa-line);
  backdrop-filter: blur(12px);
}

.koaa-subnav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.koaa-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--koaa-muted);
  border: 1px solid var(--koaa-line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.koaa-subnav a.active {
  color: #fff;
  background: var(--koaa-red);
  border-color: var(--koaa-red);
}

.koaa-page-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  align-items: start;
}

.koaa-page-aside {
  position: sticky;
  top: 154px;
  padding: 24px;
  background: var(--koaa-surface);
  border: 1px solid var(--koaa-line);
  border-radius: 8px;
}

.koaa-page-aside h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 850;
}

.koaa-page-aside a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  color: var(--koaa-ink);
  border-top: 1px solid var(--koaa-line);
  font-weight: 800;
}

.koaa-page-aside a:first-of-type {
  border-top: 0;
}

.koaa-content-block {
  padding: 30px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid var(--koaa-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(18, 21, 28, 0.06);
}

.koaa-content-block h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 850;
}

.koaa-content-block p {
  margin: 0;
  color: var(--koaa-muted);
  font-size: 17px;
  line-height: 1.8;
}

.koaa-content-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.koaa-content-list li {
  padding: 14px 16px;
  color: #334155;
  background: var(--koaa-surface);
  border: 1px solid var(--koaa-line);
  border-radius: 8px;
  font-weight: 750;
}

.koaa-action-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.koaa-action-card {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #fff !important;
  background: var(--koaa-ink);
  border-radius: 8px;
}

.koaa-action-card:nth-child(2) {
  background: var(--koaa-blue);
}

.koaa-action-card:nth-child(3) {
  background: var(--koaa-red);
}

.koaa-action-card h3,
.koaa-action-card i,
.koaa-action-card p {
  color: #fff !important;
}

.koaa-action-card h3 {
  margin: 12px 0 0;
  font-size: 19px;
  font-weight: 850;
}

.koaa-action-card p {
  margin: 8px 0 0;
  opacity: 0.78;
}

@media screen and (max-width: 1199px) {
  .activity-grid,
  .business-grid,
  .network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 991px) {
  .tc-navbar-st7.koaa-navbar {
    padding: 18px 0;
  }

  .koaa-navbar .navbar-brand .logo {
    width: min(215px, 60vw);
    max-height: 40px;
  }

  .koaa-hero {
    padding-top: 44px;
  }

  .koaa-hero .title-side {
    padding-bottom: 32px;
  }

  .koaa-stat-grid,
  .quick-service-grid,
  .about-grid,
  .notice-layout {
    grid-template-columns: 1fr;
  }

  .quick-service-grid {
    gap: 12px;
  }

  .service-tile-lookup {
    grid-column: auto;
  }

  .koaa-section {
    padding: 70px 0;
  }

  .koaa-page-grid,
  .koaa-action-strip,
  .koaa-content-list {
    grid-template-columns: 1fr;
  }

  .koaa-page-aside {
    position: static;
  }
}

@media screen and (max-width: 575px) {
  .koaa-hero h1 {
    font-size: 38px !important;
    overflow-wrap: anywhere;
  }

  .koaa-hero .hero-copy {
    font-size: 17px !important;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .koaa-section-title h2 {
    font-size: 34px;
  }

  .notice-item {
    grid-template-columns: 1fr;
  }

  .activity-grid,
  .business-grid,
  .network-grid {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: auto;
  }
}
