.service-index-page,
.service-detail-page {
  padding-top: 0;
  padding-bottom: 76px;
  background: var(--paper);
}

.service-directory-page {
  padding-bottom: 76px;
  background: var(--paper);
}

.service-directory-detail {
  max-width: var(--container);
  padding-top: 34px;
}

.service-directory-article {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.service-directory-embed {
  width: 100%;
  overflow: hidden;
  background: #edf1f7;
}

.service-directory-embed > iframe {
  display: block;
  width: 100%;
  min-height: min(760px, 78vh);
  border: 0;
  background: #fff;
}

.service-directory-embed iframe {
  height: min(760px, 78vh);
}

.service-directory-empty {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 40px 0;
  color: #536078;
  background: transparent;
}

.service-directory-empty__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: #e9edf7;
}

.service-directory-empty__icon svg {
  width: 19px;
  height: 19px;
}

.service-directory-empty h2 {
  margin: 0;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .service-directory-page {
    padding-bottom: 54px;
  }

  .service-directory-detail {
    padding-top: 26px;
  }

  .service-directory-embed > iframe,
  .service-directory-embed iframe {
    height: min(620px, 78vh);
    min-height: 480px;
  }
}

.service-index,
.service-detail-layout {
  max-width: var(--container);
}

.service-index {
  display: grid;
  gap: 34px;
  padding-top: 34px;
}

.service-index__lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: end;
  padding: 0 0 32px;
  border-bottom: 1px solid #d9deea;
}

.service-index__lead h2,
.service-index__catalogue > header h2,
.service-child-section > header h2,
.service-guide > header h2,
.service-attachments__header h2,
.service-file-preview h2 {
  margin: 7px 0 10px;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.02em;
}

.service-index__intro-copy {
  max-width: 720px;
  margin: 0;
  padding: 0;
  color: #465268;
  background: transparent;
  box-shadow: none;
}

.service-index__intro-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.service-index__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid #d9deea;
  border-bottom: 1px solid #d9deea;
}

.service-index__stats div {
  display: grid;
  gap: 4px;
  padding: 17px 15px;
  border-right: 1px solid #d9deea;
}

.service-index__stats div:last-child {
  border-right: 0;
}

.service-index__stats dt {
  color: #626f84;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.service-index__stats dd {
  margin: 0;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.service-index__catalogue {
  display: grid;
  gap: 22px;
}

.service-index__catalogue > header {
  max-width: 720px;
}

.service-index__catalogue > header p,
.service-child-section > header p,
.service-attachments__header p,
.promo-versions > header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-section-card {
  min-width: 0;
  border: 1px solid #dfe4ee;
  border-top: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(30, 44, 78, .045);
}

.service-section-card__heading {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 20px;
  gap: 13px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  border-bottom: 1px solid #e5e9f1;
  color: inherit;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.service-section-card__heading:hover {
  background: #f7f8fc;
}

.service-section-card__heading:focus-visible,
.service-section-card nav a:focus-visible,
.service-sidebar a:focus-visible,
.service-child-grid a:focus-visible,
.service-file-card__actions a:focus-visible,
.service-file-preview a:focus-visible,
.service-file-modal__close:focus-visible,
.service-section-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #dce3f0;
  border-radius: 7px;
  color: var(--navy);
  background: #f3f5fa;
}

.service-section-card__icon svg,
.service-section-card__heading > svg {
  width: 19px;
  height: 19px;
}

.service-section-card__heading small {
  display: block;
  margin-bottom: 5px;
  color: #707b8e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.service-section-card__heading strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.service-section-card__heading > svg {
  color: var(--accent);
}

.service-section-card nav {
  display: grid;
  padding: 8px 18px 13px;
}

.service-section-card nav a {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 8px 0;
  border-bottom: 1px solid #edf0f5;
  color: #3c4960;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.service-section-card nav a:last-child {
  border-bottom: 0;
}

.service-section-card nav a:hover {
  color: var(--accent);
}

.service-section-card nav svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.service-section-card nav .service-section-card__all {
  color: var(--navy);
  font-weight: 800;
}

.service-section-card__all span {
  display: inline-grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
}

.service-section-card > p {
  margin: 0;
  padding: 16px 18px 20px;
  color: #5c687b;
  font-size: 13px;
  line-height: 1.6;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 0;
}

.service-sidebar {
  position: sticky;
  top: 94px;
  overflow: hidden;
  border: 1px solid #e1e5ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(31, 47, 78, .035);
}

.service-sidebar__home {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 46px;
  padding: 10px 15px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
}

.service-sidebar__home span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: var(--accent);
  background: transparent;
}

.service-sidebar__home svg {
  width: 16px;
  height: 16px;
}

.service-sidebar__home strong {
  font-size: 14px;
  line-height: 1.3;
}

.service-sidebar__nav {
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.service-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-sidebar__section + .service-sidebar__section {
  border-top: 1px solid #edf0f5;
}

.service-sidebar__section-link {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  color: #303c51;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}

.service-sidebar__section-link svg {
  width: 16px;
  height: 16px;
  color: #727e92;
}

.service-sidebar__section-link:hover,
.service-sidebar__section-link.is-active,
.service-sidebar__section.is-open > .service-sidebar__section-link {
  color: var(--navy);
  background: #f0f3fb;
}

.service-sidebar__section-link.is-active {
  box-shadow: inset 3px 0 0 var(--accent);
}

.service-sidebar__children {
  display: none;
  padding: 2px 15px 10px 43px !important;
  background: #fafbfc;
}

.service-sidebar__section.is-open .service-sidebar__children {
  display: block;
}

.service-sidebar__children a {
  display: block;
  padding: 6px 0;
  color: #667286;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.service-sidebar__children a:hover,
.service-sidebar__children a.is-active {
  color: var(--accent);
}

.service-article {
  display: grid;
  min-width: 0;
  gap: 20px;
}

.service-breadcrumb {
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  color: #737f92;
  font-size: 11px;
  font-weight: 700;
}

.service-breadcrumb a {
  color: var(--navy);
  text-decoration: none;
}

.service-breadcrumb svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.service-article__header,
.service-child-section,
.service-guide,
.service-attachments,
.service-file-preview {
  border: 1px solid #dfe4ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(30, 44, 78, .045);
}

.service-article__header {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 30px;
  border-top: 0;
}

.service-article__header--compact {
  align-items: center;
  padding: 22px 24px;
  border-top-width: 0;
}

.service-article__icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid #d8e0ed;
  color: var(--navy);
  background: #f1f4f9;
}

.service-article__icon svg {
  width: 27px;
  height: 27px;
}

.service-article__header h1 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.service-article__header p {
  max-width: 720px;
  margin: 0;
  color: #536078;
  font-size: 15px;
  line-height: 1.7;
}

.service-child-section,
.service-guide,
.service-attachments {
  padding: 27px 29px;
}

.service-child-section > header,
.service-guide > header {
  margin-bottom: 18px;
}

.service-child-section > header h2,
.service-guide > header h2,
.service-attachments__header h2,
.service-file-preview h2 {
  font-size: clamp(24px, 3vw, 32px);
}

/* Islem rehberi basligi artik icerik ozeti (iki cumle); baslik olceginden
   dusurulup okunur paragraf olcusune cekilir. */
.service-guide > header h2.service-guide__summary {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  max-width: 72ch;
  text-wrap: pretty;
}

.service-child-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-child-grid > a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  gap: 11px;
  align-items: start;
  min-height: 96px;
  padding: 14px;
  border: 1px solid #e1e6ef;
  border-radius: 6px;
  color: inherit;
  background: #fbfcfd;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.service-child-grid > a:hover {
  border-color: #aeb9ce;
  background: #f5f7fb;
}

.service-child-grid > a > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  background: #edf1f7;
}

.service-child-grid svg {
  width: 16px;
  height: 16px;
}

.service-child-grid > a > svg {
  margin-top: 11px;
  color: var(--accent);
}

.service-child-grid strong,
.service-child-grid small {
  display: block;
}

.service-child-grid strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.service-child-grid small {
  display: -webkit-box;
  overflow: hidden;
  color: #677386;
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.service-guide__content {
  margin: 0;
  padding: 0;
  color: #354258;
  background: transparent;
  box-shadow: none;
}

.service-embed {
  aspect-ratio: 16 / 9;
  margin: 0 0 28px;
  background: #edf0f5;
}

.service-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.service-guide__content h2,
.service-guide__content h3 {
  padding-top: 14px;
  border-top: 1px solid #e4e8f0;
}

.service-guide__content table {
  display: block;
  overflow-x: auto;
  max-width: 100%;
}

.service-guide__content blockquote {
  margin: 22px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: #f7f8fb;
}

.service-guide__content .service-content-heading {
  margin: 28px 0 14px;
  padding-top: 18px;
  border-top: 1px solid #e4e8f0;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.service-guide__content .service-callout {
  position: relative;
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 16px 18px 16px 52px;
  border: 1px solid #dbe3ef;
  border-left-width: 4px;
  border-radius: 8px;
  background: #f8fafc;
}

.service-guide__content .service-callout::before {
  position: absolute;
  top: 17px;
  left: 17px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  content: "i";
}

.service-guide__content .service-callout--process {
  border-left-color: var(--navy);
  background: #f3f6fc;
}

.service-guide__content .service-callout--process::before {
  background: var(--navy);
}

.service-guide__content .service-callout--warning {
  border-color: #f0d7aa;
  border-left-color: #b45309;
  background: #fff8ed;
}

.service-guide__content .service-callout--warning::before {
  background: #b45309;
  content: "!";
}

.service-guide__content .service-callout--requirement {
  border-color: #bee3dc;
  border-left-color: #0f766e;
  background: #effaf8;
}

.service-guide__content .service-callout--requirement::before {
  background: #0f766e;
  content: "✓";
}

.service-guide__content .service-callout--law {
  border-color: #d7dde7;
  border-left-color: #596579;
  background: #f7f9fc;
}

.service-guide__content .service-callout--law::before {
  background: #596579;
  content: "§";
}

.service-guide__content .service-callout__title {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-guide__content .service-callout__body {
  display: grid;
  gap: 8px;
}

.service-guide__content .service-callout p,
.service-guide__content .service-callout ul,
.service-guide__content .service-callout ol {
  margin: 0;
}

.service-guide__content .service-checklist,
.service-guide__content .service-bullet-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
  padding-left: 25px;
}

.service-guide__content .service-checklist > li,
.service-guide__content .service-bullet-list > li {
  padding: 11px 13px;
  border: 1px solid #e3e8f0;
  border-left: 3px solid #cbd6e5;
  border-radius: 7px;
  color: #334155;
  background: #fbfcfe;
  line-height: 1.65;
}

.service-guide__content .service-checklist > li::marker {
  color: var(--navy);
  font-weight: 900;
}

.service-guide__content .service-bullet-list > li::marker {
  color: var(--accent);
}

.service-attachments {
  scroll-margin-top: 118px;
}

.service-attachments--inline {
  max-width: 780px;
  margin-top: 24px;
  margin-bottom: 0;
  padding: 8px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 15px;
  line-height: 1.6;
}

.service-attachments__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: 0;
}

.service-attachments--inline .service-attachments__header h2 {
  margin-bottom: 8px;
  padding-top: 0;
  border-top: 0;
  font-size: clamp(24px, 2.5vw, 33px);
}

.service-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.service-attachments--inline .service-file-list {
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}

.service-file-card {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #e1e5ed;
  border-radius: 6px;
  background: #fbfcfd;
}

.service-attachments--inline .service-file-card {
  width: 286px;
  min-height: 74px;
  flex: 0 0 286px;
}

.service-file-card__icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--navy);
}

.service-file-card__icon svg {
  width: 21px;
  height: 21px;
}

.service-file-card__meta {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: #748094;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.service-file-card__meta strong {
  display: block;
  overflow: hidden;
  max-width: 132px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-file-card__meta small {
  display: block;
  overflow: hidden;
  max-width: 72px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-file-card__actions {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.service-attachments--inline .service-file-card__actions {
  grid-column: auto;
  width: auto;
}

.service-file-card__action,
.service-file-preview header > a,
.service-file-modal__close {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid #d4dbe7;
  border-radius: 5px;
  color: var(--navy);
  background: #fff;
  text-decoration: none;
  cursor: pointer;
}

.service-file-card__action--primary,
.service-file-preview header > a {
  border-color: var(--navy);
  color: #fff;
  background: var(--navy);
}

.service-file-card__action:hover,
.service-file-preview header > a:hover,
.service-file-modal__close:hover {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.service-file-card__actions svg,
.service-file-preview header > a svg,
.service-file-modal__close svg {
  width: 16px;
  height: 16px;
}

.service-file-card__action--primary svg {
  color: #fff;
  stroke: #fff;
}

.service-attachments__empty {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 16px;
  border: 1px dashed #cfd6e3;
  color: #667286;
  background: #fafbfc;
}

.service-attachments__empty svg {
  width: 20px;
  flex: 0 0 auto;
  color: var(--navy);
}

.service-attachments__empty p {
  margin: 0;
  font-size: 13px;
}

.service-file-preview {
  overflow: hidden;
  scroll-margin-top: 118px;
}

.service-file-preview header {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid #dfe4ee;
}

.service-file-preview h2 {
  margin-bottom: 0;
  font-size: 20px;
}

.service-file-preview iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  background: #edf0f5;
}

.service-file-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 27, 64, .56);
}

.service-file-modal[hidden] {
  display: none;
}

.service-file-modal__dialog {
  position: relative;
  width: min(100%, 1020px);
  max-height: min(100%, 900px);
  padding: 24px;
  border: 1px solid #dfe4ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(17, 27, 64, .22);
}

.service-file-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.service-file-modal__header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-right: 46px;
}

.service-file-modal__header h2 {
  margin: 7px 0 6px;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.service-file-modal__header p {
  margin: 0;
  color: #667286;
  font-size: 13px;
  line-height: 1.55;
}

/* Indirme, ust kosede ikon-only ve soft kaldigi icin fark edilmiyordu;
   modalin altinda tam etiketli birincil buton olarak duruyor. */
.service-file-modal__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e5e9f1;
}

.service-file-modal__download {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.service-file-modal__download:hover {
  color: #fff;
  background: var(--accent);
}

.service-file-modal__download:focus-visible {
  outline: 3px solid rgba(224, 10, 20, .28);
  outline-offset: 2px;
}

.service-file-modal__download svg {
  width: 18px;
  height: 18px;
  color: #fff;
  stroke: #fff;
}

.service-file-modal__frame {
  display: block;
  width: 100%;
  height: min(70vh, 720px);
  border: 1px solid #dfe4ee;
  border-radius: 6px;
  background: #edf0f5;
}

.service-file-modal__fallback {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 100%;
  padding: 28px;
  color: #667286;
  text-align: center;
  background: #edf1f7;
}

.service-file-modal__fallback strong {
  color: var(--ink);
  font-size: 15px;
}

.service-file-modal__fallback p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1060px) {
  .service-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .service-sidebar__nav {
    max-height: 420px;
  }
}

@media (max-width: 860px) {
  .service-index__lead {
    grid-template-columns: 1fr;
  }

  .service-article__header {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 24px;
  }

  .service-article__icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 640px) {
  .service-index-page,
  .service-detail-page {
    padding-bottom: 54px;
  }

  .service-index {
    gap: 28px;
    padding-top: 26px;
  }

  .service-section-grid,
  .service-child-grid {
    grid-template-columns: 1fr;
  }

  .service-index__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-index__stats div {
    padding: 13px 9px;
  }

  .service-index__stats dd {
    font-size: 24px;
  }

  .service-article__header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 20px;
  }

  .service-article__header h1 {
    font-size: 31px;
  }

  .service-child-section,
  .service-guide,
  .service-attachments {
    padding: 22px 18px;
  }

  .service-guide__content .service-callout {
    padding: 15px 15px 15px 44px;
  }

  .service-guide__content .service-callout::before {
    left: 14px;
    width: 19px;
    height: 19px;
    font-size: 11px;
  }

  .service-guide__content .service-checklist,
  .service-guide__content .service-bullet-list {
    padding-left: 21px;
  }

  .service-guide__content .service-checklist > li,
  .service-guide__content .service-bullet-list > li {
    padding: 10px 11px;
  }

  .service-attachments__header,
  .service-file-preview header {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-file-card {
    grid-template-columns: 30px minmax(0, 1fr) auto;
  }

  .service-file-card__actions {
    grid-column: auto;
  }

  .service-attachments--inline .service-file-card {
    width: min(100%, 286px);
    flex-basis: min(100%, 286px);
  }

  .service-file-card__action,
  .service-file-modal__close {
    width: 34px;
    height: 34px;
  }

  .service-file-preview iframe {
    height: 520px;
  }

  .service-file-modal__download {
    width: 100%;
    justify-content: center;
  }

  .service-file-modal {
    padding: 12px;
  }

  .service-file-modal__dialog {
    padding: 18px;
  }

  .service-file-modal__header {
    padding-right: 38px;
  }

  .service-file-modal__header h2 {
    font-size: 20px;
  }

  .service-file-modal__frame {
    height: 56vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-section-card__heading,
  .service-child-grid > a {
    transition: none;
  }
}

/* ------------------------------------------------------------------
 | Faaliyet raporlari (/faaliyet-raporlari) - .reports-*
 * ------------------------------------------------------------------ */
.reports-header {
  position: relative;
}

.reports-count {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 14px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.reports-count svg {
  width: 15px;
  height: 15px;
}

.reports-years {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
}

.reports-years a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white, #fff);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.reports-years a:hover,
.reports-years a:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.reports-year {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
  scroll-margin-top: 110px;
}

.reports-year__heading {
  display: flex;
  gap: 14px;
  align-items: center;
}

.reports-year__heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.reports-year__line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

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

.reports-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e5ed;
  border-radius: 8px;
  background: #fbfcfd;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.reports-card:hover {
  border-color: rgba(60, 73, 152, .35);
  box-shadow: 0 10px 26px rgba(31, 47, 78, .09);
  transform: translateY(-2px);
}

.reports-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 124px;
  background: linear-gradient(160deg, #eef1f9 0%, #dfe4f3 100%);
  color: var(--navy);
  text-decoration: none;
}

.reports-card--cover .reports-card__media {
  background: #e9edf5;
}

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

.reports-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--white, #fff);
  box-shadow: 0 6px 16px rgba(31, 47, 78, .12);
}

.reports-card__icon svg {
  width: 24px;
  height: 24px;
}

.reports-card__year {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  color: rgba(60, 73, 152, .75);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
}

.reports-card__body {
  display: grid;
  gap: 6px;
  align-content: start;
  min-width: 0;
  padding: 14px 14px 12px;
}

.reports-card__title {
  margin: 0;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.reports-card__meta {
  margin: 0;
  color: #748094;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.reports-card__summary {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.reports-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.reports-card__action {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white, #fff);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.reports-card__action svg {
  width: 15px;
  height: 15px;
}

.reports-card__action:hover,
.reports-card__action:focus-visible {
  border-color: var(--navy);
  background: rgba(60, 73, 152, .08);
}

.reports-card__action--primary {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.reports-card__action--primary:hover,
.reports-card__action--primary:focus-visible {
  background: #2f3a7d;
  border-color: #2f3a7d;
  color: #fff;
}

.reports-empty {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 48px 20px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.reports-empty svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
}

.reports-empty p {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 640px) {
  .reports-grid {
    grid-template-columns: 1fr;
  }

  .reports-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .reports-year__heading h2 {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reports-card,
  .reports-card__action,
  .reports-years a {
    transition: none;
  }

  .reports-card:hover {
    transform: none;
  }
}

/* ---- Mobil duzeltmeleri (2026-09-08 responsive denetimi). Masaustu kurallari degismez. ---- */
.service-sidebar__toggle {
  display: none;
}

@media (max-width: 900px) {
  .service-sidebar__toggle {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
    min-height: 48px;
    padding: 10px 15px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: #f7f8fc;
    color: var(--navy);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
  }

  .service-sidebar__toggle svg {
    width: 18px;
    height: 18px;
    flex: none;
  }

  .service-sidebar__toggle-chevron {
    margin-left: auto;
    transition: transform 200ms ease;
  }

  .service-sidebar.is-expanded .service-sidebar__toggle-chevron {
    transform: rotate(180deg);
  }

  .service-sidebar.is-expanded .service-sidebar__toggle {
    border-bottom-color: transparent;
  }

  .service-sidebar:not(.is-expanded) .service-sidebar__nav {
    display: none;
  }

  .service-sidebar__nav {
    max-height: none;
  }

  .service-sidebar__children a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
    font-size: 14px;
  }

  .service-sidebar__section-link {
    min-height: 48px;
    font-size: 14px;
  }

  .service-breadcrumb a,
  .service-breadcrumb span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    font-size: 13px;
  }

  /* Grid cocuklarinin otomatik min-width'i uzun tablo/metinlerde sayfayi
     viewport'tan genis yapiyordu; mobilde icerik kutulari daralabilir. */
  .service-article > * {
    min-width: 0;
  }

  /* Genis tablolar (harc tarifeleri vb.) sayfayi degil yalniz kendini kaydirir. */
  .service-guide__content table,
  .service-article .article__content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  /* Yalniz ikon + etiketten olusan bos baslik karti mobilde gizlenir; baslik masthead'de. */
  .service-article__header--compact {
    display: none;
  }

  .service-file-card__meta strong {
    max-width: none;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* Gomulu icerik (e-kitap/video) tam ekran baglantisi: yalniz mobilde gorunur. */
.service-embed__fullscreen {
  display: none;
}

@media (max-width: 720px) {
  .service-embed {
    margin-bottom: 12px;
  }

  .service-embed__fullscreen {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    margin: 0 0 24px;
    padding: 10px 16px;
    border: 1px solid #d5dbe9;
    border-radius: 8px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .service-embed__fullscreen svg {
    width: 17px;
    height: 17px;
  }
}

/* ------------------------------------------------------------------
 | Gorus yazilari (/gorus/{token}): lacivert masthead + 12 kolon govde
 | (sol 7 kolon yazi karti, sag 5 kolon yapisik form karti)
 * ------------------------------------------------------------------ */
.opinion-page {
  padding-bottom: 0;
}

/* Masthead bandi */
.opinion-masthead {
  padding: 44px 0 40px;
  color: var(--white);
  background: var(--navy);
}

.opinion-masthead__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opinion-masthead__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd4d6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.opinion-masthead__title {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.opinion-masthead__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 6px;
  color: #dfe3ff;
  font-size: 14px;
}

.opinion-masthead__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.opinion-masthead__date svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.opinion-masthead__date time {
  font-weight: 600;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.opinion-masthead__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
}

/* Durum rozeti */
.opinion-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.opinion-status__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
}

.opinion-status--expired .opinion-status__dot {
  background: #b7bdd6;
}

.opinion-status--expired {
  color: #dfe3ff;
}

.opinion-status--scheduled .opinion-status__dot {
  background: #fbbf24;
}

/* Govde: 12 kolon */
.opinion-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  padding: 40px 0 72px;
}

.opinion-article {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
  padding: 40px 44px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.opinion-side {
  grid-column: span 5;
  position: sticky;
  top: 24px;
  min-width: 0;
}

.opinion-layout--single .opinion-side {
  grid-column: 1 / -1;
  position: static;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.opinion-article__eyebrow {
  color: var(--accent);
}

/* Yazi icerigi: article__content genel kurallarini karta uyarlar */
.opinion-article__content {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.opinion-article__content > :first-child {
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.opinion-article__content h2,
.opinion-article__content h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.opinion-article__content h3 {
  font-size: 18px;
}

.opinion-article__content p {
  margin: 0 0 18px;
}

.opinion-article__content p:last-child {
  margin-bottom: 0;
}

.opinion-article__content ul,
.opinion-article__content ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 20px;
  line-height: 1.6;
}

.opinion-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* Ekler */
.opinion-attachments {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.opinion-attachments__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.opinion-attachments__head h2 {
  margin: 0;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.opinion-attachments__count {
  color: var(--muted);
  font-size: 13px;
}

.opinion-attachments__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.opinion-attachment {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.opinion-attachment:hover,
.opinion-attachment:focus-visible {
  border-color: var(--navy);
  box-shadow: 0 6px 18px rgba(60, 73, 152, 0.10);
  color: var(--ink);
}

.opinion-attachment:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.opinion-attachment__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
}

.opinion-attachment__icon svg {
  width: 20px;
  height: 20px;
}

.opinion-attachment__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.opinion-attachment__meta strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.opinion-attachment__meta small {
  color: var(--muted);
  font-size: 12px;
}

.opinion-attachment__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.opinion-attachment__action svg {
  width: 16px;
  height: 16px;
}

/* Sag kart (form / tesekkur / durum bildirimi) */
.opinion-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 32px 30px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(60, 73, 152, 0.10);
}

.opinion-card__heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.opinion-card__heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.opinion-card__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Form */
.opinion-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.opinion-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.opinion-field > label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.opinion-field > label > span,
.opinion-consent b {
  color: var(--accent);
}

.opinion-field input:not([type=checkbox]),
.opinion-field textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #dce0eb;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  outline: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.opinion-field input::placeholder,
.opinion-field textarea::placeholder {
  color: #8f98ad;
}

.opinion-field textarea {
  min-height: 150px;
  padding: 12px;
  line-height: 1.55;
  resize: vertical;
}

.opinion-field input:not([type=checkbox]):focus,
.opinion-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(60, 73, 152, 0.14);
}

.opinion-field--error input:not([type=checkbox]),
.opinion-field--error textarea {
  border-color: #c9302c;
}

.opinion-field--error input:not([type=checkbox]):focus,
.opinion-field--error textarea:focus {
  border-color: #c9302c;
  box-shadow: 0 0 0 3px rgba(201, 48, 44, 0.14);
}

.opinion-field--error .opinion-consent {
  border-color: #c9302c;
}

.opinion-field__error {
  color: #a92828;
  font-size: 12px;
  font-weight: 600;
}

.opinion-field__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.opinion-counter {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.opinion-counter--limit {
  color: var(--accent);
  font-weight: 700;
}

/* KVKK onay kutusu */
.opinion-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.opinion-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

.opinion-consent input:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.opinion-consent a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

.opinion-consent a:hover {
  color: var(--accent);
}

.opinion-honeypot {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Gonder butonu */
.opinion-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.opinion-submit svg {
  width: 17px;
  height: 17px;
}

.opinion-submit:hover {
  background: #b80810;
}

.opinion-submit:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.opinion-submit[disabled] {
  opacity: 0.65;
  cursor: progress;
}

.opinion-form__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.opinion-form__note svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: var(--navy);
}

/* Genel hata ozeti */
.opinion-errors {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 15px;
  border: 1px solid #f3c2c2;
  border-radius: 6px;
  background: #fff0f0;
  color: #a92828;
  font-size: 12px;
  line-height: 1.5;
}

.opinion-errors svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.opinion-errors div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.opinion-errors strong {
  font-size: 13px;
}

/* Tesekkur karti ve durum bildirimleri (form karti yerinde) */
.opinion-thanks {
  border-top-color: #147443;
}

.opinion-thanks__icon,
.opinion-notice__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f6ee;
  color: #147443;
}

.opinion-thanks__icon svg,
.opinion-notice__icon svg {
  width: 26px;
  height: 26px;
}

.opinion-thanks .opinion-card__heading p {
  font-size: 14px;
  line-height: 1.6;
}

.opinion-notice--info .opinion-notice__icon {
  background: #fff4dc;
  color: #b7791f;
}

.opinion-notice--info {
  border-top-color: #f5b638;
}

.opinion-notice--closed .opinion-notice__icon {
  background: #eef0f6;
  color: var(--muted);
}

.opinion-notice--closed {
  border-top-color: #8f98ad;
}

.opinion-notice .opinion-card__heading h2 {
  font-size: 20px;
}

/* Mobil / tablet: tek sutun, form karti yazinin altinda, sticky kapali */
@media (max-width: 959px) {
  .opinion-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0 56px;
  }

  .opinion-article,
  .opinion-side {
    grid-column: 1 / -1;
  }

  .opinion-side {
    position: static;
  }

  .opinion-article {
    padding: 28px 24px 30px;
  }

  .opinion-card {
    padding: 26px 22px 24px;
  }
}

@media (max-width: 600px) {
  .opinion-masthead {
    padding: 32px 0 28px;
  }

  .opinion-masthead__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .opinion-masthead__divider {
    display: none;
  }

  .opinion-article {
    padding: 22px 18px 24px;
  }

  .opinion-card {
    padding: 22px 18px 22px;
  }

  .opinion-attachment {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .opinion-attachment__action {
    grid-column: 2;
  }
}
