/* About, Media Center, Contact, Read More – content styles */

/* ===== About page ===== */
.banner {
  height: 232px;
  width: 100%;

  /* image + tint together */
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/slides/slide2.png");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

.content h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .banner {
    height: 180px;
  }

  .content h1 {
    font-size: 1.6rem;
  }
}
.about-intro {
  /* text-align: center; */
  font-size: clamp(1rem, 2rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.about-block {
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.about-block h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.about-block p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--color-white);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--color-accent);
}

.value-card h3 {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: clamp(0.85rem, 1vw, 0.9375rem);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Our Staff */
.our-staffs {
  padding: var(--section-padding) var(--container-padding);
  width: 100%;
  margin: 0 auto;
  z-index: -1;
  background-color: #e9ebeb;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.staff-card {
  background: var(--color-white);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.staff-photo {
  width: 280px;
  height: 300px;
  border-radius: 5%;
  overflow: hidden;
  margin: 0 auto 0.75rem;
  background: var(--color-bg);
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff-name {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.staff-role {
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.staff-bio {
  font-size: clamp(0.85rem, 1vw, 0.9375rem);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.our-approach {
  background: var(--color-btn);
  color: var(--color-bg);
  padding: var(--section-padding) var(--container-padding);
}

.approach-wrap {
  max-width: 100%;
  margin: 0 auto;
}

.approach-text {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  line-height: 1.7;
}

/* ===== Media Center page (News & Article grid) ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.article-card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.article-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg);
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card-body {
  padding: clamp(1.25rem, 1.5vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-meta {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.article-card h3 {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.article-card p {
  font-size: clamp(0.85rem, 1vw, 0.9375rem);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.article-card .btn {
  align-self: flex-start;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ===== Contact page ===== */
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form {
  background: var(--color-white);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: var(--color-white);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.8;
}

.contact-form .btn {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.contact-also {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.contact-details {
  width: 100%;
  padding-bottom: 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.contact-details a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-details i {
  color: var(--color-btn);
  font-size: 16px;
}

.contact-details .social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}

.contact-details .social-icons i {
  font-size: 16px; /* bigger icons */
  color: var(--color-btn);
  margin: 0 5px; /* optional spacing if in row */
}

.contact-details .social-icons p {
  margin: 0;
  font-weight: 600;
}

/* ===== Read More (article detail) page ===== */
.article-detail {
  max-width: 720px;
  margin: 0 auto;
}

.article-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  background: var(--color-bg);
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-detail-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.article-detail h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.article-detail-body {
  font-size: clamp(0.95rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--color-text-muted);
}

.article-detail-body p {
  margin-bottom: 1rem;
}

.more-news-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.more-news-section .section-head {
  margin-bottom: 1.5rem;
}

.more-news-section .article-grid {
  margin-top: 1rem;
}
