@charset "UTF-8";

/* =====================
   News – Section Title
===================== */
#news .sectionTitle {
  background: none !important;
}
#news .sectionTitle::before {
  content: 'INFORMATION';
}

/* =====================
   News – Archive List
===================== */
#archive dl {
  max-width: 100%;
  display: flex;
  align-items: baseline;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.2s ease;
}
#archive dl:first-of-type {
  border-top: 1px solid rgba(0,0,0,0.07);
}
#archive dl:nth-of-type(2n) {
  background: #fafafa;
}
#archive dl:hover,
#archive dl:nth-of-type(2n):hover {
  background: rgba(246, 209, 30, 0.1);
}
#archive dl:last-of-type {
  margin-bottom: 56px;
}

#archive dl dt {
  width: 16%;
  flex-shrink: 0;
  font-family: 'Spartan', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--clr-muted);
  letter-spacing: 0.04em;
  padding-left: 8px;
}
#archive dl dd {
  width: 84%;
  font-size: 1.4rem;
  line-height: 1.65;
}
#archive dl dd a {
  transition: color 0.2s ease;
}
#archive dl dd a:hover {
  color: #555;
  opacity: 1;
}

/* NEW badge */
#archive dl dt.new::after {
  content: 'NEW';
  font-family: 'Spartan', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: #E63900;
  display: inline-block;
  padding: 2px 6px 2px;
  margin-left: 8px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  #archive dl {
    flex-flow: column;
    padding: 14px 8px;
  }
  #archive dl dt,
  #archive dl dd {
    width: 100%;
  }
  #archive dl dt {
    padding-left: 0;
    margin-bottom: 4px;
    font-size: 1.1rem;
  }
  #archive dl dd {
    font-size: 1.35rem;
  }
}

/* =====================
   News / Blog – Post Detail
===================== */
#postTitle {
  width: 100%;
  padding: 24px 0;
  align-items: center;
  border-bottom: solid 3px #E6E6E6;
  position: relative;
}
#postTitle::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px var(--clr-yellow);
  bottom: -3px;
  width: 18%;
  min-width: 80px;
}
#postTitle dt {
  width: 82%;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  border-right: solid 1px #E0E0E0;
  padding-right: 24px;
}
#postTitle dd {
  width: 18%;
  text-align: center;
  font-size: 1.2rem;
  font-family: 'Spartan', sans-serif;
  font-weight: 600;
  color: var(--clr-faint);
  letter-spacing: 0.06em;
}
#postBlock {
  padding: 56px 0;
  font-size: 1.5rem;
  line-height: 1.95;
}

@media screen and (max-width: 767px) {
  #postTitle {
    flex-wrap: wrap;
  }
  #postTitle dt,
  #postTitle dd {
    width: 100%;
  }
  #postTitle dt {
    font-size: 1.7rem;
    line-height: 1.5;
    margin-bottom: 14px;
    border: none;
    padding-right: 0;
  }
  #postTitle dd {
    text-align: left;
    font-size: 1.1rem;
  }
  #postBlock {
    padding-top: 28px;
    font-size: 1.4rem;
  }
}
