/* Hospital / business public profile — extends doctor-profile visual language */

body.landing-mode2 .hospital-profile-page {
  padding: 24px 0 16px;
  background: linear-gradient(180deg, #f7faff 0%, #eef5fc 100%);
  min-height: 100vh;
}

body.landing-mode2 .hospital-profile-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 24px;
}

body.landing-mode2 .hospital-profile-loading {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  color: #07347b;
  border: 1px solid #e6edf7;
  box-shadow: 0 12px 35px rgba(7, 52, 123, 0.06);
  font-size: 1.05rem;
}

body.landing-mode2 .hp-photo {
  width: 110px;
  height: 110px;
  border-radius: 22px;
  background: linear-gradient(145deg, #e8f1ff, #d6e6fb);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #07347b;
  font-size: 2.4rem;
}

body.landing-mode2 .hp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.landing-mode2 .hp-meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

body.landing-mode2 .hp-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #35527a;
  font-size: 0.95rem;
  line-height: 1.45;
}

body.landing-mode2 .hp-meta-row i {
  color: #07347b;
  margin-top: 3px;
  width: 18px;
  text-align: center;
}

body.landing-mode2 .hp-meta-row a {
  color: #0b5ed7;
  text-decoration: none;
  font-weight: 600;
}

body.landing-mode2 .hp-meta-row a:hover {
  text-decoration: underline;
}

body.landing-mode2 .hp-doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

body.landing-mode2 .hp-doctor-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e6edf7;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(7, 52, 123, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.landing-mode2 .hp-doctor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 52, 123, 0.1);
}

body.landing-mode2 .hp-doctor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #eef5fc;
  color: #07347b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

body.landing-mode2 .hp-doctor-name {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #07347b;
}

body.landing-mode2 .hp-doctor-spec {
  margin: 0;
  font-size: 0.85rem;
  color: #5b7394;
}

body.landing-mode2 .hp-doctor-fee {
  margin: 6px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0b5ed7;
}

body.landing-mode2 .hp-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

body.landing-mode2 .hp-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: #35527a;
}

body.landing-mode2 .hp-hours-list .day {
  font-weight: 700;
  color: #07347b;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  body.landing-mode2 .hospital-profile-container {
    padding: 0 14px;
  }
}
