/* ==========================================================================
   Home page — band-style layout
   ========================================================================== */

/* ---- Hero section ---- */
.home-hero {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  column-gap: 40px;
  padding: 2.5rem 0 2rem;
  text-align: left;
}

.home-hero h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #2c3e50;
  margin: 0 0 1.2rem 0;
  letter-spacing: -0.02em;
}

.home-hero-photo {
  width: 100%;
}

.home-hero img.home-hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.home-hero-text {
  min-width: 0;
}

.home-hero-en {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  max-width: 100%;
  margin: 0 0 1rem;
  text-align: left;
}

.home-hero-kr {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  max-width: 100%;
  margin: 0 0 1.5rem;
  text-align: left;
}

/* ---- Goal banner (bottom) ---- */
.home-banner {
  margin-bottom: 2.5rem;
  text-align: center;
}

.home-banner img.home-banner-img {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* ---- Keyword band ---- */
.home-band {
  background: #2c3e50;
  padding: 1.2rem 1rem;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.home-band-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.home-kw {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.home-kw-dot {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  margin: 0 8px;
}

/* ---- Two-column layout ---- */
.home-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.home-col {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 1.8rem 2rem;
}

.home-col h3 {
  font-weight: 800;
  color: #2c3e50;
  margin: 0 0 1.2rem 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

/* ---- Publications list ---- */
.home-pub-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.home-pub-ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.home-pub-ul li:last-child {
  border-bottom: none;
}

.home-pub-year {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 800;
  color: #999;
  padding-top: 2px;
  min-width: 38px;
}

.home-pub-info {
  flex: 1;
  min-width: 0;
}

.home-pub-title {
  margin: 0 0 2px 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

.home-pub-title a {
  color: #333;
  text-decoration: none;
}

.home-pub-title a:hover {
  color: #0085A1;
  text-decoration: underline;
}

.home-pub-journal {
  margin: 0;
  font-size: 0.82rem;
  color: #888;
  font-style: italic;
}

/* ---- News list ---- */
.home-news-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.home-news-ul li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.home-news-ul li a {
  color: #333;
  font-weight: 700;
  text-decoration: none;
}

.home-news-ul li a:hover {
  color: #0085A1;
  text-decoration: underline;
}

.home-news-ul li:last-child {
  border-bottom: none;
}

.home-news-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: #999;
  margin-right: 10px;
}

/* ---- Shared link style ---- */
.home-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0085A1;
  text-decoration: none;
}

.home-link:hover {
  text-decoration: underline;
}

/* ---- Contact strip ---- */
.home-contact-strip {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1rem 2rem;
  text-align: center;
}

.home-contact-strip p {
  margin: 0;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .home-hero {
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
  }

  .home-hero h2 {
    font-size: 1.5rem;
  }

  .home-hero-photo {
    max-width: 200px;
    margin: 0 auto;
  }

  .home-hero img.home-hero-img {
    width: 100%;
    max-width: 100%;
  }

  .home-band-inner {
    flex-direction: column;
    gap: 4px;
  }

  .home-kw-dot {
    display: none;
  }

  .home-banner img.home-banner-img {
    width: 100%;
  }

  .home-columns {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* News before Publications on mobile */
  .home-col-news {
    order: -1;
  }

  .home-col {
    padding: 1.2rem 1.4rem;
  }

  .home-contact-strip {
    padding: 1rem 1.2rem;
    text-align: left;
  }
}
