
/* ======================================================
   ÖZELLIK SAYFASI — Feature landing page styles
   ====================================================== */

:root {
  --ozellik-header-offset: calc(env(safe-area-inset-top, 0px) + 4.125rem);
}

html:has(body.ozellik-page) {
  scroll-padding-top: var(--ozellik-header-offset);
}

/* Özellik sayfaları: layout farkları; renk base .header'dan gelir */
body.ozellik-page .header {
  width: 100%;
  z-index: 1000;
}

body.ozellik-page > main {
  padding-top: 0;
}


/* ── Hero ── */
.op-hero {
  background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 100%);
  padding: 4rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.op-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.op-hero__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.op-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.op-hero__title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 1rem;
}

.op-hero__title em {
  font-style: normal;
  color: var(--color-primary);
}

.op-hero__desc {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.55;
  color: #475569;
  max-width: 580px;
  margin: 0 auto;
}

.op-hero__btns {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.op-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 8px 24px -8px rgba(37, 99, 235, 0.45);
}

.op-hero__cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.op-hero__cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: 12px;
  border: 1.5px solid rgba(15, 23, 42, 0.15);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.op-hero__cta-ghost:hover {
  border-color: rgba(15, 23, 42, 0.3);
}

/* ── Features Section ── */
.op-features {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.op-features__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.op-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.op-section-title {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 1rem;
}

.op-section-desc {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 3rem;
}

.op-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .op-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .op-features__grid {
    grid-template-columns: 1fr;
  }
}

.op-feature-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.op-feature-card:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 4px 16px -6px rgba(37, 99, 235, 0.1);
}

.op-feature-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
}

.op-feature-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

/* ── Detail Section ── */
.op-detail {
  padding: 5rem 1.5rem;
  background: #f8fafc;
}

.op-detail__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.op-detail__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.op-detail__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.op-detail__item-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 0.45rem;
}

.op-detail__item-text {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}

.op-detail__item-text strong {
  color: #0f172a;
  font-weight: 600;
}

/* ── FAQ Section Override ── */
.ozellik-page .faq-section { background: #ffffff; }

/* 2-column FAQ accordion */
.faq-accordion.faq-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  align-items: start;
}
.faq-accordion.faq-2col .faq-item {
  margin: 0;
}
.faq-accordion.faq-2col .faq-item.open .faq-answer {
  animation: faq-slide-down 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes faq-slide-down {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 760px) {
  .faq-accordion.faq-2col { grid-template-columns: 1fr; gap: 12px; }
}

/* ── Prose + Related Videos + TOC layout ── */
.ky-prose-section { padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2rem); background: #ffffff; }
.ky-prose-shell {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 220px minmax(0, 720px) 220px;
  justify-content: center;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
}
.ky-prose-main { min-width: 0; }
@media (max-width: 1100px) {
  .ky-prose-shell { grid-template-columns: 200px minmax(0, 1fr); }
}
@media (max-width: 900px) {
  .ky-prose-shell { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Sol sticky TOC (İçindekiler) */
.ky-toc {
  position: sticky;
  top: calc(var(--ozellik-header-offset, 4.125rem) + 1.5rem);
  align-self: start;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
.ky-toc__title {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f172a;
}
.ky-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}
.ky-toc__list a {
  display: block;
  padding: 0.45rem 0 0.45rem 0.85rem;
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: 0.92rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.15s, border-color 0.15s;
}
.ky-toc__list a:hover { color: #0f172a; }
.ky-toc__list a.is-active {
  color: #2563eb;
  font-weight: 600;
  border-left-color: #2563eb;
}
@media (max-width: 900px) {
  .ky-toc { position: static; padding-bottom: 1rem; border-bottom: 1px solid rgba(15, 23, 42, 0.08); }
  .ky-toc__list { border-left: none; flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1rem; }
  .ky-toc__list a { padding: 0; margin: 0; border: none; font-size: 0.85rem; }
  .ky-toc__list a.is-active { border: none; padding: 0; }
}
.ky-prose-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #374151;
}
.ky-prose-body { counter-reset: ky-section; }
.ky-prose-body p { margin: 0; }
.ky-prose-body strong { color: #0f172a; font-weight: 700; }

/* Editorial bölüm başlığı (H3) — numaralı badge + üst çizgi + iki satırlı hierarşi */
.ky-prose-body h3 {
  counter-increment: ky-section;
  position: relative;
  margin: 2.6rem 0 1.1rem;
  padding-top: 1.6rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #0f172a;
}
.ky-prose-body h3::before {
  content: 'BÖLÜM ' counter(ky-section, decimal-leading-zero);
  display: block;
  margin-bottom: 0.55rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #2563eb;
  text-transform: uppercase;
}
.ky-prose-body h3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
}
/* İlk başlığın üst boşluğunu hafifle (önceki paragrafla doğal akış) */
.ky-prose-body > h3:first-child {
  margin-top: 0.5rem;
  padding-top: 1.2rem;
}

/* Yapılandırılmış kural listesi */
.ky-rules {
  margin: 0;
  padding: 14px 18px 16px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  font-size: 0.96rem;
  line-height: 1.55;
}
.ky-rules__head {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.55rem;
}
.ky-rules__lead {
  margin: 0 0 0.5rem;
  color: #374151;
}
.ky-rules__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ky-rules__list li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  color: #1f2937;
}
.ky-rules__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
  transform: translateY(-3px);
}

/* ── Tip / Önemli callout (örnek mavi kutu) ── */
.ky-callout {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  background: #eff4ff;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1rem 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #0f172a;
}
.ky-callout__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff5cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ky-callout__body { margin: 0; }
.ky-callout__title {
  color: #2563eb;
  font-weight: 700;
}
.ky-callout strong, .ky-callout b { color: #2563eb; font-weight: 600; }

/* ── Videos block (under prose) ── */
.ky-videos-block {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.75rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.ky-videos__label {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary, #2563eb);
}
.ky-videos__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
@media (max-width: 900px) { .ky-videos__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ky-videos__list { grid-template-columns: 1fr; } }
.ky-vid {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 9px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  height: 100%;
}
.ky-vid:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 6px 18px -10px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}
.ky-vid__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ky-vid__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.ky-vid__play {
  position: relative;
  z-index: 1;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.4);
  transition: transform 0.18s;
}
.ky-vid__play svg { width: 11px; height: 11px; }
.ky-vid:hover .ky-vid__play { transform: scale(1.08); }
.ky-vid__dur {
  position: absolute;
  bottom: 5px;
  right: 6px;
  z-index: 1;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  padding: 1px 6px;
  border-radius: 3px;
  font-feature-settings: "tnum";
}
.ky-vid__title {
  font-size: 0.81rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.005em;
  padding: 0.55rem 0.65rem 0.65rem;
}


/* ── FAQ Alt CTA ── */
.faq-bottom-cta { display: flex; align-items: center; justify-content: space-between; background: #0f172a; border-radius: 12px; padding: 16px 24px; margin: 2rem 0 0; gap: 16px; }
.faq-bottom-cta__content { display: flex; align-items: center; gap: 12px; color: #a5b4fc; font-size: 15px; font-weight: 500; }
.faq-bottom-cta__content span { color: #f1f5f9; }
.faq-bottom-cta__btn { display: inline-flex; align-items: center; gap: 8px; background: #4f46e5; color: #fff; font-size: 14px; font-weight: 600; padding: 10px 20px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background .2s; }
.faq-bottom-cta__btn:hover { background: #4338ca; }

/* ── Support CTA Band ── */
.support-cta-band { padding: 2rem clamp(1rem,4vw,2.5rem) 3rem; box-sizing: border-box; background: #ffffff; }
.support-cta-band__shell { position: relative; max-width: 1112px; margin: 0 auto; border-radius: 18px; overflow: hidden; background: #e8eaf0; display: flex; }
.support-cta-band__bg { position: absolute; inset: 0; background: url('../medya/sorunuzmuvar-bg.png') center/cover no-repeat; opacity: 0.35; z-index: 0; }
.support-cta-band__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(232,234,240,0.88) 0%, rgba(232,234,240,0.55) 45%, rgba(232,234,240,0.15) 100%); z-index: 1; }
.support-cta-band__grid { position: relative; z-index: 2; display: flex; align-items: center; gap: 4rem; width: 100%; padding: clamp(2.5rem,4vw,3.5rem) clamp(2rem,4vw,3.5rem); }
.support-cta-band__left { flex: 0 0 auto; min-width: 280px; }
.support-cta-band__head { display: flex; flex-direction: column; margin: 0 0 1.25rem; }
.support-cta-band__head-line { font-size: clamp(14px,1.1vw,16px); color: #374151; font-weight: 400; }
.support-cta-band__head-strong { font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 800; color: #0f172a; line-height: 1.15; }
.support-cta-band__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.support-cta-band__btn { display: inline-flex; align-items: center; gap: 6px; background: #4f46e5; color: #fff; font-size: 14px; font-weight: 600; padding: 10px 22px; border-radius: 8px; text-decoration: none; transition: background .2s; }
.support-cta-band__btn:hover { background: #4338ca; }
.support-cta-band__phone { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #d1d5db; border-radius: 8px; padding: 10px 18px; font-size: 14px; font-weight: 600; color: #111827; text-decoration: none; transition: border-color .2s; }
.support-cta-band__phone:hover { border-color: #4f46e5; color: #4f46e5; }
.support-cta-band__phone-icon svg { stroke: currentColor; }
.support-cta-band__right { flex: 1; display: flex; align-items: center; align-self: stretch; }
.support-cta-band__copy { font-size: clamp(13px,1vw,15px); color: #1f2937; line-height: 1.7; margin: 0 2rem 0 auto; max-width: 480px; text-align: left; }

/* ── Guide Section ── */
.op-guide {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.op-guide__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.op-guide__block {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  padding: 2rem 2rem 2.25rem;
}

.op-guide__block-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.op-guide__block-title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.op-guide__block-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.op-guide__block-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .op-guide__block-body {
    grid-template-columns: 1fr;
  }
}

.op-guide__desc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.op-guide__desc p {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

.op-guide__desc p strong {
  color: #0f172a;
  font-weight: 600;
}

.op-guide__video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.op-guide__video-wrap video,
.op-guide__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.op-guide__video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.op-guide__video-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
}

.op-guide__video-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

/* ── CTA Banner ── */
.op-cta {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #1e40af 0%, #4f46e5 100%);
  text-align: center;
}

.op-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.op-cta__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 0.875rem;
}

.op-cta__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.op-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.2);
}

.op-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.25);
}

/* ── Other Modules ── */
.op-others {
  padding: 4rem 1.5rem;
  background: #ffffff;
}

.op-others__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.op-others__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1.5rem;
}

.op-others__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .op-others__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .op-others__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.op-others__link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 10px;
  text-decoration: none;
  color: #374151;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.op-others__link:hover {
  background: rgba(37, 99, 235, 0.04);
  border-color: rgba(37, 99, 235, 0.2);
  color: var(--color-primary);
}

.op-others__link-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(37, 99, 235, 0.07);
  color: var(--color-primary);
}
