.president {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(480px, 1.1fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.president::before {
  content: "";
  position: absolute;
  right: -10vw;
  top: -20%;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(198, 161, 91, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(198,161,91,.025), 0 0 0 14vw rgba(198,161,91,.02);
}
.president-portrait { position: relative; z-index: 1; max-width: 610px; }
.president-portrait::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.president-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.88) contrast(1.03);
}
.portrait-line {
  position: absolute;
  left: -28px;
  bottom: 12%;
  width: 90px;
  height: 3px;
  background: var(--red);
}
.president-message { position: relative; z-index: 1; max-width: 760px; }
.president .section-label { color: var(--gold); }
.quote-mark {
  position: absolute;
  right: 0;
  top: -55px;
  font-family: Marcellus, serif;
  font-size: 11rem;
  line-height: 1;
  color: rgba(198, 161, 91, .1);
}
.president h2 {
  font-family: Marcellus, serif;
  font-size: clamp(3rem, 5.2vw, 6.1rem);
  line-height: .98;
  font-weight: 400;
  margin: 28px 0 42px;
  letter-spacing: -.025em;
}
.president h2 em { font-style: normal; color: var(--gold); }
.president-message > p {
  max-width: 690px;
  color: #c5cbd5;
  font-size: 1rem;
  line-height: 1.85;
  margin: 0 0 20px;
}
.president-message .message-final {
  color: #fff;
  font-family: Marcellus, serif;
  font-size: 1.3rem;
  line-height: 1.55;
  margin-top: 30px;
}
.signature {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--red);
  padding-left: 20px;
  margin-top: 38px;
}
.signature strong { font-family: Marcellus, serif; font-size: 1.65rem; font-weight: 400; }
.signature span {
  font-size: .68rem;
  letter-spacing: .13em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 7px;
}
@media (max-width: 900px) {
  .president { grid-template-columns: 1fr; gap: 65px; }
  .president-portrait { width: calc(100% - 24px); max-width: 560px; }
  .president h2 { margin-bottom: 30px; }
  .quote-mark { font-size: 8rem; top: -35px; }
}

/* Ayrı ve belirgin Genel Başkan mesaj kutusu */
.president {
  display: block;
  padding-top: 105px;
  background: #e9e0d2;
  color: var(--ink);
}
.president::before { display: none; }
.president-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 42px;
}
.president-heading span {
  color: var(--red);
  font-size: .72rem;
  letter-spacing: .22em;
  font-weight: 700;
}
.president-heading strong {
  font-family: Marcellus, serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
}
.president-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, .82fr) minmax(480px, 1.18fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  padding: clamp(34px, 5vw, 78px);
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--gold);
  box-shadow: 0 30px 80px rgba(7, 14, 29, .2);
}
.president-box::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(198, 161, 91, .22);
  pointer-events: none;
}
@media (max-width: 900px) {
  .president { padding-top: 78px; }
  .president-heading { display: block; margin-bottom: 28px; }
  .president-heading span { display: block; margin-bottom: 5px; }
  .president-box { grid-template-columns: 1fr; gap: 58px; padding: 34px 28px 44px; }
}
