* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.about-header {
    text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-header span {
  color: #c0392b;
}

.why-title {
    text-align: center;
    color: #c0392b;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 1rem;
}

.body-text {
        text-align: center;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 1rem;
}

.districts-label {
  color: #c0392b;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.districts-text {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* Photo */
.photo-wrap {
  border-radius: 8px;
  overflow: hidden;
  width: 269px;
  height: 302px;
  margin: 0 auto;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.person-info {
  text-align: center;
  margin-top: 12px;
}

.person-name {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin: 0 0 4px;
}

.person-position {
  font-size: 13px;
  color: #c0392b;
  margin: 0 0 4px;
}

.person-mobile {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* Content Box */
.content-box {
  background: #ffffff;
  border-radius: 8px;
  border: 5px solid #f44144;
  /*border-top: 5px solid #ffe066;*/
  padding: 1.5rem;
}

/* ===== DESKTOP ===== */
.desktop-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-layout {
  display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {

  .desktop-top {
    display: none;
  }

  .desktop-content {
    display: none;
  }

  .mobile-layout {
    display: block;
  }

  .m-photo-wrap {
    border-radius: 8px;
    overflow: hidden;
    width: 180px;
    height: 220px;
    margin: 0 auto;
  }

  .m-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }

  .m-person-info {
    text-align: center;
    margin: 10px 0 1.5rem;
  }

}
