@charset "UTF-8";
section.banner {
  background-image: url("/assets/images/banner.jpg");
  background-size: cover;
  height: calc(100vh - 150px);
  background-position: center;
  position: relative;
  align-content: center;
}
section.banner .bk {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
}
section.banner .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 0 80px;
}
section.banner .content .heading {
  position: relative;
}
section.banner .content h1 {
  font-size: 70px;
  line-height: 1.2;
  color: white;
  font-weight: bold;
  position: relative;
  margin: 0 0 16px;
}
section.banner .content .tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  position: relative;
}
section.banner .content .data {
  display: grid;
  gap: 20px;
}
section.banner .content .data .box {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 20px;
  color: #FFFFFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  place-self: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
section.banner .content .data .box .date,
section.banner .content .data .box .temperature {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "box-icon box-title" "box-icon box-description";
  column-gap: 20px;
  row-gap: 14px;
  padding: 0 0 0 40px;
}
section.banner .content .data .box .date i,
section.banner .content .data .box .temperature i {
  grid-area: box-icon;
  width: 48px;
  height: 48px;
  filter: invert(1);
  border: none;
}
section.banner .content .data .box .date h2,
section.banner .content .data .box .temperature h2 {
  grid-area: box-title;
  margin: 0;
}
section.banner .content .data .box .date h4,
section.banner .content .data .box .temperature h4 {
  grid-area: box-description;
  margin: 0;
  opacity: 0.8;
}
section.banner .content .data .box .date {
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
section.banner .content .data .box.radio {
  flex-direction: column;
}
section.banner .content .data .box.radio h2 {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
}
section.banner .content .data .box.radio h2 i {
  filter: invert(1);
  width: 24px;
  height: 24px;
}

section.access .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  position: relative;
  margin: 0 auto;
  padding: 40px 80px 80px 80px;
}
section.access .content a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  width: 100%;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
section.access .content a i {
  width: 56px;
  height: 56px;
}
section.access .content a h4 {
  font-size: 14px;
  margin: 14px 0 0 0;
  color: #374151;
  font-weight: 600;
  line-height: 1.4;
}
section.access .content a:hover {
  background: royalblue;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(65, 105, 225, 0.25);
  border-color: transparent;
}
section.access .content a:hover i {
  filter: invert(1);
}
section.access .content a:hover h4 {
  color: white;
}

section.news {
  display: block;
}
section.news .list {
  display: grid;
  padding: 40px 80px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}
section.news .list a {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
section.news .list a .bk {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  top: 0;
  left: 0;
  border-radius: 12px;
  z-index: 1;
}
section.news .list a img {
  width: 100%;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
section.news .list a .category {
  background: royalblue;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
section.news .list a .data {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 16px 20px;
}
section.news .list a .data h4 {
  color: white;
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}
section.news .list a .data p {
  color: rgba(255, 255, 255, 0.85);
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s, max-height 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
section.news .list a:first-child {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
section.news .list a:first-child .data h4 {
  font-size: 18px;
}
section.news .list a:hover img {
  transform: scale(1.05);
}
section.news .list a:hover p {
  opacity: 1;
  max-height: 48px;
}
section.news .btn {
  margin: 0 80px;
  display: block;
  justify-self: center;
  width: max-content;
  font-size: 16px;
  font-weight: bold;
}

section.news h2,
section.access h2 {
  margin: 0;
  padding: 80px 80px 0 80px;
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  color: #111827;
  position: relative;
}
section.news h2::after,
section.access h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: royalblue;
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  section.banner {
    height: calc(100svh - 70px);
  }
  section.banner .content {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 24px;
  }
  section.banner .content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  section.banner .content .tagline {
    font-size: 13px;
    letter-spacing: 1.5px;
  }
  section.banner .content .data {
    gap: 12px;
  }
  section.banner .content .data .box {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  section.banner .content .data .box .date {
    padding: 0 0 12px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  section.banner .content .data .box .temperature {
    padding: 12px 0 0 0;
  }
  section.news h2,
  section.access h2 {
    font-size: 28px;
    padding: 48px 24px 0;
  }
  section.access .content {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 24px 48px;
    gap: 10px;
  }
  section.news .list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    padding: 24px 24px;
    gap: 10px;
  }
  section.news .list a:first-child {
    grid-column: 1/-1;
    grid-row: auto;
  }
  section.news .btn {
    margin: 0 24px;
  }
}
@media (max-width: 480px) {
  section.banner .content {
    padding: 0 16px;
  }
  section.banner .content h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  section.banner .content .tagline {
    font-size: 12px;
  }
  section.news h2,
  section.access h2 {
    font-size: 24px;
    padding: 36px 16px 0;
  }
  section.access .content {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 16px 32px;
    gap: 8px;
  }
  section.news .list {
    grid-template-columns: 1fr;
    padding: 16px 16px;
  }
  section.news .btn {
    margin: 0 16px;
  }
}

/*# sourceMappingURL=HomeComponent.css.map */
