/* NOTICE SECTION */

.updates-section{

  max-width: 1500px;

  margin: 80px auto;

  padding: 0 60px;
}

.updates-card{
  background:white;
  border-radius:20px;
  padding:20px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.updates-card h2{
  margin-bottom:15px;
  color:#111827;
}

.notice-marquee{
  height:220px;
  overflow:hidden;
  position:relative;
}

.notice-marquee:hover{
  overflow-y:auto;
}

.notice-item{
  padding:12px 0;
  border-bottom:1px solid #e5e7eb;
}

.notice-item a,
.notice-title{
  color:#111827;
  text-decoration:none;
  font-weight:600;
}

.notice-item a:hover{
  color:#0072CE;
}

.notice-type{
  display:inline-block;
  padding:4px 10px;
  border-radius:20px;
  font-size:12px;
  font-weight:700;
  margin-right:10px;
}

.notice{
  background:#e0f2fe;
  color:#0369a1;
}

.event{
  background:#dcfce7;
  color:#15803d;
}

.section-line-header{
  margin-bottom:30px;
}

.notice-grid{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:25px;
}

.updates-card{

  background:#fff;

  border-radius:20px;

  padding:25px;

  box-shadow:var(--shadow);
}

.updates-card h3{

  color:var(--primary-blue);

  margin-bottom:20px;

  border-bottom:2px solid #eee;

  padding-bottom:10px;
}

.notice-item{

  padding:12px 0;

  border-bottom:1px solid #eee;
}

.notice-item a{

  text-decoration:none;

  color:#374151;

  font-weight:600;
}

.notice-item a:hover{

  color:var(--primary-green);
}

@media(max-width:768px){

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

}

.section-line-header{

  display:flex;
  align-items:center;

  position:relative;

  margin-bottom:45px;
}

.section-line-header::after{

  content:"";

  flex:1;

  background: rgba(0,166,81,0.45);
height: 1.5px;

  margin-left:20px;

  background:#00a651;

  border-radius:999px;
}

.notice-desc{

  margin-top:8px;

  color:#6b7280;

  font-size:14px;

  line-height:1.5;

  font-weight:400;
}

.notice-title-row{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:8px;
}

.notice-date{
  color:#777;
  font-size:12px;
  font-weight:500;
}