/* OGD — Otomotiv Gazetecileri Derneği */
:root {
  --ogd-red: #cc0000;
  --ogd-red-dark: #a30000;
  --ogd-text: #222222;
  --ogd-text-muted: #666666;
  --ogd-border: #e8e8e8;
  --ogd-bg: #ffffff;
  --ogd-bg-soft: #f7f7f7;
  --ogd-banner-bg: #e5e5e5;
  --ogd-font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ogd-container: 1200px;
  --ogd-bp-mobile: 768px;
  --ogd-touch-min: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.ogd-page {
  margin: 0;
  font-family: var(--ogd-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ogd-text);
  background: var(--ogd-bg);
}

body.ogd-menu-open {
  overflow: hidden;
}

a {
  color: var(--ogd-red);
  text-decoration: none;
}

a:hover {
  color: var(--ogd-red-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ogd-container {
  width: 100%;
  max-width: var(--ogd-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* —— Header —— */
.ogd-header {
  background: var(--ogd-bg);
  border-bottom: 1px solid var(--ogd-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ogd-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  min-height: 72px;
  gap: 16px 24px;
}

.ogd-header__logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.ogd-logo-img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.ogd-logo-img--header {
  height: 50px;
}

.ogd-logo-img--footer {
  height: 40px;
}

.ogd-header__inner .ogd-nav--desktop {
  margin-left: auto;
}

.ogd-header__inner .ogd-header__toggle {
  margin-left: auto;
}

.ogd-nav--desktop {
  display: block;
}

.ogd-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 20px;
}

.ogd-nav__list a {
  color: var(--ogd-text);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.ogd-nav__list a:hover,
.ogd-nav__list a.is-active {
  color: var(--ogd-red);
  border-bottom-color: var(--ogd-red);
}

.ogd-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.ogd-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ogd-text);
  margin: 0 auto;
}

.ogd-nav-drawer {
  display: none;
}

/* —— Banners —— */
.ogd-banner--top {
  padding: 16px 0;
  background: var(--ogd-bg);
}

.ogd-banner__box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: var(--ogd-banner-bg);
  overflow: hidden;
}

.ogd-banner__box--970x90 {
  width: 970px;
  max-width: 100%;
  min-height: 90px;
}

.ogd-banner__box--300x250 {
  width: 300px;
  max-width: 100%;
  min-height: 250px;
}

.ogd-banner__box--728x90 {
  width: 728px;
  max-width: 100%;
  min-height: 90px;
  margin: 0 auto;
}

.ogd-banner--content {
  margin: 32px auto;
  text-align: center;
}

/* Mobil leaderboard (≤768px) — ogd.css media query ile uygulanır */
.ogd-banner__box--320x50 {
  width: 320px;
  max-width: 100%;
  min-height: 50px;
  height: 50px;
}

.ogd-banner__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ogd-banner-placeholder {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #888888;
  text-transform: uppercase;
}

.ogd-banner--side {
  margin-bottom: 28px;
}

/* —— Hero —— */
.ogd-hero {
  padding: 28px 0 8px;
}

.ogd-hero__carousel {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 21 / 9;
  min-height: 280px;
}

.ogd-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.ogd-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ogd-hero__link {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
}

.ogd-hero__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ogd-hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 28px 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.ogd-hero__cat {
  display: inline-block;
  background: var(--ogd-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.ogd-hero__caption h2 {
  margin: 0 0 8px;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.ogd-hero__meta {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.ogd-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ogd-text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.ogd-hero__arrow--prev { left: 12px; }
.ogd-hero__arrow--next { right: 12px; }

.ogd-hero__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 0;
}

.ogd-hero__dot {
  width: 12px;
  height: 12px;
  min-width: var(--ogd-touch-min);
  min-height: var(--ogd-touch-min);
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.ogd-hero__dot.is-active {
  background: var(--ogd-red);
}

/* —— Main layout 8 + 4 —— */
.ogd-main {
  padding: 36px 0 56px;
}

.ogd-main__row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.ogd-section {
  margin-bottom: 40px;
}

.ogd-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--ogd-red);
}

.ogd-section__head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--ogd-text);
}

.ogd-section__more {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.ogd-grid--cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* —— Cards —— */
.ogd-card {
  background: var(--ogd-bg);
  border: 1px solid var(--ogd-border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.ogd-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ogd-card__thumb {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.ogd-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ogd-card:hover .ogd-card__thumb img {
  transform: scale(1.04);
}

.ogd-card__cat {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--ogd-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 10px;
}

.ogd-card__body {
  padding: 16px 18px 20px;
}

.ogd-card__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.ogd-card__title a {
  color: var(--ogd-text);
}

.ogd-card__title a:hover {
  color: var(--ogd-red);
}

.ogd-card__meta {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--ogd-text-muted);
}

.ogd-card__excerpt {
  margin: 0;
  font-size: 14px;
  color: var(--ogd-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* —— Sidebar —— */
.ogd-sidebar {
  position: sticky;
  top: 88px;
}

.ogd-widget {
  margin-bottom: 28px;
}

.ogd-widget__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ogd-red);
}

.ogd-recent {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ogd-recent__item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ogd-border);
}

.ogd-recent__item:last-child {
  border-bottom: none;
}

.ogd-recent__thumb {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 3px;
}

.ogd-recent__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ogd-recent__title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ogd-text);
  line-height: 1.4;
  margin-bottom: 4px;
}

.ogd-recent__title:hover {
  color: var(--ogd-red);
}

.ogd-recent__date {
  font-size: 12px;
  color: var(--ogd-text-muted);
}

/* —— Footer —— */
.ogd-footer {
  background: #1a1a1a;
  color: #b0b0b0;
  margin-top: 0;
}

.ogd-footer a {
  color: #e0e0e0;
}

.ogd-footer a:hover {
  color: #fff;
}

.ogd-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 48px 20px 40px;
}

.ogd-footer__logo {
  display: inline-block;
  line-height: 0;
}

.ogd-footer__brand p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.ogd-footer h3 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.ogd-footer__contact p {
  margin: 0 0 10px;
  font-size: 14px;
}

.ogd-footer__contact i {
  width: 20px;
  margin-right: 8px;
  color: var(--ogd-red);
}

.ogd-footer__social-links {
  display: flex;
  gap: 12px;
}

.ogd-footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  font-size: 18px;
}

.ogd-footer__social-links a:hover {
  background: var(--ogd-red);
}

.ogd-footer__copy {
  border-top: 1px solid #333;
  padding: 18px 0;
  font-size: 13px;
  text-align: center;
}

/* —— Responsive (breakpoint: 768px) —— */
@media (max-width: 768px) {
  body.ogd-page {
    font-size: 14px;
  }

  .ogd-container {
    padding: 0 16px;
  }

  /* Header: logo sol, hamburger sağ */
  .ogd-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 12px;
  }

  .ogd-header__toggle {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
  }

  .ogd-header__logo {
    order: -1;
  }

  .ogd-logo-img--header {
    height: 50px;
  }

  .ogd-nav--desktop {
    display: none;
  }

  .ogd-nav-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
  }

  .ogd-nav-drawer.is-open {
    pointer-events: auto;
  }

  .ogd-nav-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .ogd-nav-drawer.is-open .ogd-nav-drawer__backdrop {
    opacity: 1;
  }

  .ogd-nav-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100%;
    background: var(--ogd-bg);
    padding: 16px 20px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  }

  .ogd-nav-drawer.is-open .ogd-nav-drawer__panel {
    transform: translateX(0);
  }

  .ogd-nav-drawer__close {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: var(--ogd-touch-min);
    min-height: var(--ogd-touch-min);
    border: none;
    background: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--ogd-text);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ogd-nav__list--mobile {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 48px;
  }

  .ogd-nav__list--mobile a {
    display: flex;
    align-items: center;
    min-height: var(--ogd-touch-min);
    padding: 10px 4px;
    font-size: 15px;
    border-bottom: 1px solid var(--ogd-border);
  }

  /* Banner: 320×50 */
  .ogd-banner--top {
    padding: 10px 0;
  }

  .ogd-banner__box--970x90,
  .ogd-banner__box--300x250,
  .ogd-banner__box--728x90,
  #top-banner .ogd-banner-inner,
  #side-banner .ogd-banner-inner,
  #content-banner .ogd-banner-inner {
    width: 320px;
    max-width: 100%;
    min-height: 50px;
    height: 50px;
  }

  .ogd-banner-placeholder {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .ogd-banner--side {
    margin-bottom: 20px;
  }

  #side-banner {
    margin-left: auto;
    margin-right: auto;
  }

  /* Ana sayfa + iç sayfa layout: tek kolon */
  .ogd-main {
    padding: 24px 0 40px;
  }

  .ogd-main__row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ogd-sidebar {
    position: static;
  }

  .ogd-grid--cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ogd-section__head {
    flex-wrap: wrap;
    gap: 12px;
  }

  .ogd-section__head h2 {
    font-size: clamp(18px, 4.5vw, 22px);
  }

  .ogd-section__more {
    min-height: var(--ogd-touch-min);
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
  }

  .ogd-card__title {
    font-size: clamp(16px, 4vw, 17px);
  }

  /* Hero */
  .ogd-hero {
    padding: 16px 0 6px;
  }

  .ogd-hero__carousel {
    aspect-ratio: 16 / 10;
    min-height: 200px;
  }

  .ogd-hero__caption {
    padding: 32px 16px 16px;
  }

  .ogd-hero__caption h2 {
    font-size: clamp(17px, 4.5vw, 22px);
  }

  .ogd-hero__arrow {
    display: none;
  }

  .ogd-hero__dots {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Üyeler: 2 kolon */
  .ogd-members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .ogd-member-card {
    padding: 24px 16px 20px;
  }

  .ogd-member-card__photo-wrap,
  .ogd-member-card__photo {
    width: 100px;
    height: 100px;
  }

  .ogd-member-card__name {
    font-size: clamp(15px, 3.5vw, 18px);
  }

  .ogd-member-card__bio {
    font-size: 13px;
  }

  /* Sayfa başlığı */
  .ogd-page-head h1 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .ogd-page-head__desc {
    font-size: clamp(14px, 3.5vw, 16px);
  }

  /* İletişim */
  .ogd-contact-info {
    padding: 18px 20px;
  }

  .ogd-contact-form__field input,
  .ogd-contact-form__field textarea {
    font-size: 16px;
    min-height: var(--ogd-touch-min);
  }

  .ogd-contact-form__field textarea {
    min-height: 120px;
  }

  .ogd-contact-form__submit {
    width: 100%;
    min-height: var(--ogd-touch-min);
    padding: 12px 24px;
    font-size: 15px;
  }

  /* Footer */
  .ogd-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 16px 28px;
  }

  .ogd-footer__social-links a {
    min-width: var(--ogd-touch-min);
    min-height: var(--ogd-touch-min);
  }

  .ogd-recent__title {
    font-size: clamp(13px, 3.5vw, 14px);
  }
}

/* Üyeler: çok dar ekranda tek kolon */
@media (max-width: 480px) {
  .ogd-members-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .ogd-member-card:hover {
    transform: scale(1.02);
  }
}

/* —— Sayfa başlığı —— */
.ogd-page-head {
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--ogd-red);
}

.ogd-page-head h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--ogd-text);
}

.ogd-page-head__desc {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ogd-text-muted);
}

/* —— Üyeler grid —— */
.ogd-members-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ogd-member-card {
  text-align: center;
  padding: 36px 24px 32px;
  background: var(--ogd-bg);
  border: 1px solid var(--ogd-border);
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ogd-member-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.ogd-member-card__photo-wrap {
  margin: 0 auto 20px;
  width: 140px;
  height: 140px;
}

.ogd-member-card__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  border: 3px solid var(--ogd-bg-soft);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ogd-member-card__name {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ogd-text);
}

.ogd-member-card__title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ogd-red);
}

.ogd-member-card__bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ogd-text-muted);
}

/* —— Hakkımızda —— */
.ogd-about-head {
  margin-bottom: 28px;
}

.ogd-about-founded {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ogd-text-muted);
}

.ogd-about-founded__label {
  font-weight: 600;
  color: var(--ogd-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}

.ogd-about-intro {
  max-width: 760px;
  margin-bottom: 48px;
}

.ogd-about-intro p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ogd-text);
}

.ogd-about-section {
  margin-bottom: 48px;
}

.ogd-about-section:last-child {
  margin-bottom: 0;
}

.ogd-about-section__title {
  margin: 0 0 20px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ogd-text);
  border-bottom: 1px solid var(--ogd-border);
}

.ogd-people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.ogd-person-card {
  padding: 20px 16px;
  text-align: center;
  background: var(--ogd-bg);
  border: 1px solid var(--ogd-border);
  border-radius: 4px;
}

.ogd-person-card__name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ogd-text);
}

.ogd-person-card__role {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--ogd-text-muted);
}

.ogd-about-empty {
  margin: 0;
  font-size: 14px;
  color: var(--ogd-text-muted);
}

@media (max-width: 768px) {
  .ogd-about-intro {
    margin-bottom: 36px;
  }

  .ogd-about-intro p {
    font-size: 16px;
  }

  .ogd-people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ogd-person-card {
    padding: 16px 12px;
  }
}

@media (max-width: 480px) {
  .ogd-people-grid {
    grid-template-columns: 1fr;
  }
}

/* —— İletişim —— */
.ogd-contact-info {
  margin-bottom: 32px;
  padding: 24px 28px;
  background: var(--ogd-bg-soft);
  border-radius: 4px;
  border-left: 4px solid var(--ogd-red);
}

.ogd-contact-info__item {
  margin: 0 0 16px;
  font-size: 16px;
}

.ogd-contact-info__item:last-child {
  margin-bottom: 0;
}

.ogd-contact-info__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ogd-text-muted);
  margin-bottom: 4px;
}

.ogd-contact-info__item a {
  font-weight: 600;
  color: var(--ogd-text);
}

.ogd-contact-info__item a:hover {
  color: var(--ogd-red);
}

.ogd-contact-form {
  max-width: 560px;
}

.ogd-contact-form__row {
  margin-bottom: 18px;
}

.ogd-contact-form__field {
  display: block;
}

.ogd-contact-form__field > span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ogd-text);
}

.ogd-contact-form__field input,
.ogd-contact-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--ogd-font);
  font-size: 15px;
  color: var(--ogd-text);
  background: var(--ogd-bg);
  border: 1px solid var(--ogd-border);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.ogd-contact-form__field input:focus,
.ogd-contact-form__field textarea:focus {
  outline: none;
  border-color: var(--ogd-red);
}

.ogd-contact-form__field textarea {
  resize: vertical;
  min-height: 140px;
}

.ogd-contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--ogd-touch-min);
  padding: 12px 36px;
  font-family: var(--ogd-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--ogd-red);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.ogd-contact-form__submit:hover:not(:disabled) {
  background: var(--ogd-red-dark);
}

.ogd-contact-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.ogd-contact-form__note {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--ogd-text-muted);
}

/* Legacy banner helpers (diğer sayfalar) */
.ogd-banner {
    text-align: center;
}

.ogd-contact-block a {
    color: var(--ogd-red);
}

.ogd-page-intro {
  margin-bottom: 30px;
}

/* —— Legacy Akea sayfaları (haberler vb. ogd.css yüklü) —— */
@media (max-width: 768px) {
  .akea-mobile-header-wrap {
    display: block;
  }

  .akea-header-wrap.akea-style-splitted-menu .akea-main-menu {
    display: none;
  }

  .akea-content-container.akea-container,
  .akea-sidebar-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .akea-sidebar-center,
  .akea-sidebar.gdlr-core-column-20 {
    width: 100% !important;
    float: none !important;
  }

  .gdlr-core-column-40,
  .gdlr-core-column-60,
  .gdlr-core-column-20 {
    width: 100% !important;
    float: none !important;
  }

  .akea-sidebar-wrap {
    display: flex;
    flex-direction: column;
  }

  .akea-sidebar-center {
    order: 1;
  }

  .akea-sidebar {
    order: 2;
  }

  #top-banner {
    padding: 10px 16px;
  }

  #content-banner {
    margin: 24px auto;
  }
}

/* Legacy Akea sayfalarında OGD header/footer */
body.ogd-legacy-chrome .akea-mobile-header-wrap,
body.ogd-legacy-chrome .akea-header-wrap {
  display: none !important;
}

body.ogd-legacy-chrome .akea-body-outer-wrapper > footer {
  display: none !important;
}

.ogd-phone--placeholder {
  color: var(--ogd-text-muted);
}
