/**
 * Immigration News Section - Hero + Text List Layout
 */

/* ==========================================================================
   SECTION BACKGROUND
   ========================================================================== */
.joongang-section--immigration {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* ==========================================================================
   HERO + TEXT LIST LAYOUT
   ========================================================================== */
.immi-option1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.immi-option1__hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.immi-option1__hero a {
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.immi-option1__hero-icon {
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.immi-option1__hero-badge {
  display: inline-block;
  background: #fbbf24;
  color: #1e3a8a;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  width: fit-content;
}

.immi-option1__hero-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px;
  flex-grow: 1;
}

.immi-option1__hero-excerpt {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0 0 16px;
}

.immi-option1__hero-date {
  font-size: 13px;
  opacity: 0.7;
}

.immi-option1__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  padding: 8px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.immi-option1__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s;
}

.immi-option1__item:last-child {
  border-bottom: none;
}

.immi-option1__item:hover {
  background: #f8fafc;
}

.immi-option1__item-bullet {
  color: #3b82f6;
  font-size: 20px;
  line-height: 1;
}

.immi-option1__item-title {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #1e293b;
}

.immi-option1__item-date {
  font-size: 12px;
  color: #94a3b8;
  white-space: nowrap;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 767px) {
  .immi-option1 {
    grid-template-columns: 1fr;
  }
}
