.menu-link-parent-text {
  color: #2a3668 !important;
}

.landing-container {
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: var(--light-steel-blue);
  color: var(--primary-text-color);
}

.landing-container p {
  margin: 0;
}

.landing-header-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 8rem 4rem 7rem 4rem;
  background-image: url("../images/home/landing-header-bg.png");
  background-repeat: repeat-x;
  background-size: contain;
  min-height: 35rem;
  align-items: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient dari putih ke transparan */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.landing-header-logo {
  width: 100%;
  object-fit: fill;
}

.landing-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  text-align: center;
  font-size: 22px;
  line-height: 1.8rem;
  font-weight: bold;
}

.landing-header-text {
  margin: 0 !important;
}

.landing-image {
  width: 50%;
  height: 100%;
}

.landing-header-date-time {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 10px;
}

.landing-header-date-time p {
  padding: 3px 20px;
  color: white;
  font-weight: bold;
}

.landing-header-date-time p:first-child {
  background-color: var(--muted-steel-blue);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding-right: 10px;
}

.landing-header-date-time p:last-child {
  background-color: var(--carolina-blue);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-left: 10px;
}

.landing-date-time-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../images/home/bg-landing-date-time.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: white;
  font-weight: bold;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.landing-date-time-container p {
  line-height: 1.8rem;
}

.landing-date-time-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.landing-date-time-title {
  text-shadow:
    -1px -1px 0 var(--carolina-blue),
    1px -1px 0 var(--carolina-blue),
    -1px 1px 0 var(--carolina-blue),
    1px 1px 0 var(--carolina-blue),
    0px -4px 0px var(--carolina-blue);
  font-size: 60px;
}

.landing-date-time-item-container {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: flex-start;
  justify-content: center;
}

.landing-date-time-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 45px;
}

.landing-date-time-item p:first-child {
  font-size: 32px;
}

.landing-date-time-item p:last-child {
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
}

.event-date-img {
  width: 65%;
}

.landing-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 24px;
}

.landing-content-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sector-content-container,
.government-section-wrapper,
.figure-container,
.news-container {
  padding: 3rem 10rem;
}

.sector-content-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sector-image-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sector-source-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-top: 10px;
}

.sector-source-wrapper p {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--primary-navy-blue);
}

.sector-source-wrapper a {
  text-decoration: none;
  font-size: 8px;
  color: var(--primary-navy-blue);
}

.sector-source-wrapper a:hover {
  text-decoration: underline;
}

.event-section-container {
  background-image: url("../images/common/bg-section-2026.png");
  background-repeat: repeat;
  background-size: 100% 100%;
}

.government-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.figure-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.figure-wrapper {
  position: relative;
}

.figure-wrapper p {
  position: absolute;
  bottom: -15px;
  color: white;
  font-weight: 600;
  opacity: 0;
  animation: fadingIn 1s ease-in 3s forwards;
}

.support-image-container {
  grid-template-columns: repeat(3, 1fr);
}

.news-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 20px;
  padding-top: 20px;
}

.news-wrapper a {
  text-decoration: none;
}

.home-news-card {
  border-radius: 12px;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 5px 20px;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-align: left;
  background-color: var(--primary-navy-blue);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-news-card:hover {
  transform: translateY(-5px);
}

.news-card-large {
  min-height: 400px;
}

.news-small-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom */
  grid-template-rows: repeat(2, 1fr); /* 2 baris */
  gap: 15px;
}

.news-card-small {
  min-height: 190px;
  font-size: 0.9rem;
}

.news-card-content p {
  margin: 0;
  line-height: 0.9rem;
}

.news-card-content p:first-child {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 5px;
}

.news-card-content p:last-child {
  font-size: 10px;
}

/* Mobile styles (for devices with a max width of 768px) */
@media only screen and (max-width: 768px) {
  .landing-header-container {
    grid-template-columns: repeat(1, 1fr);
    padding: 4rem 20px;
    padding-top: 10rem;
    min-height: 25rem;
  }

  .landing-header-wrapper {
    padding-top: 20px;
    font-size: 19px;
  }

  .landing-header-date-time {
    font-size: 15px;
  }

  .landing-date-time-container {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .landing-date-time-title {
    line-height: 3.8rem !important;
    font-size: 45px;
  }
  .sector-content-container,
  .government-section-wrapper,
  .figure-container,
  .news-container {
    padding: 1rem 2rem;
  }

  .landing-content-container {
    font-size: 16px;
  }

  .sector-image-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-image-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .news-wrapper {
    grid-template-columns: 1fr; /* Jadi satu kolom memanjang ke bawah */
  }

  .news-card-large {
    min-height: 300px;
  }

  .news-small-cards-grid {
    grid-template-columns: repeat(1, 1fr); /* 2 kolom */
    grid-template-rows: repeat(1, 1fr); /* 2 baris */
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1200px) {
}
