/* ==============================
   Overview Start
============================== */

/* Page title */
.greeting-title {
  font-size: 2rem;
  color: #cf1965;
  border-bottom: 2px solid #cf1965;
  text-align: left;
  margin: 20px 0;
  font-weight: 700;
}

/* Info Block */
.info-block {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background-color: #ffffff;
}

.info-heading {
  background: linear-gradient(240deg, #ff7c96, #ff9db1);
  color: #ffffff;
  font-weight: 600;
  padding: 10px 15px;
  font-size: 1.4rem;
}

.info-content {
  padding: 10px 15px;
  font-size: 1.2rem;
  color: black;
  font-weight: bold;
}

.normal-weight {
  font-weight: normal;
}

.info-content a {
  text-decoration: none;
  color: #D93B4C;
}

.info-content a:hover {
  color: black;
  font-weight: bold;
}



/* Responsive (page-only) */
@media screen and (max-width: 768px) {
  .greeting-title {
    font-size: 1.5rem;
  }

  .info-heading {
    font-size: 1rem;
    padding: 8px 12px;
  }

  .info-content {
    font-size: 0.95rem;
    padding: 8px 12px;
  }
}

/* ==============================
   Overview End
============================== */
