/* ===========================================================
   PòTVWA — Feuille de style principale
   Couleurs : bleu #0b2f6b / bleu foncé #061c42 / rouge #d21b28
   =========================================================== */

:root {
  --pv-blue: #0b2f6b;
  --pv-deep: #061c42;
  --pv-red: #d21b28;
  --bg: #f6f7fb;
  --text: #12172a;
  --gray: #6b7280;
  --line: rgba(0, 0, 0, .07);
  --shadow: 0 1px 3px rgba(0, 0, 0, .07);
  --radius: 12px;
  --max: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.pv-headline { font-family: Georgia, "Times New Roman", serif; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 16px; }
main { flex: 1; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ================= HEADER ================= */
.site-header { position: sticky; top: 0; z-index: 50; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1); }

.topbar { background: var(--pv-deep); color: rgba(255, 255, 255, .8); font-size: 12px; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 6px; padding-bottom: 6px; gap: 12px; }
.topbar a:hover { color: #fff; }
.topbar .date { text-transform: capitalize; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a {
  width: 24px; height: 24px; border-radius: 999px; background: rgba(255, 255, 255, .1);
  display: grid; place-items: center; font-size: 11px; transition: .2s;
}
.topbar-social a:hover { background: var(--pv-red); color: #fff; }

.masthead { background: var(--pv-blue); color: #fff; }
.masthead .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 12px; padding-bottom: 12px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 44px; height: 44px; border-radius: 6px; background: var(--pv-red); display: grid; place-items: center; font-weight: 900; font-size: 20px; }
.logo-name { font-size: 24px; font-weight: 700; letter-spacing: .04em; line-height: 1; display: block; }
.logo-sub { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .28em; color: rgba(255, 255, 255, .7); margin-top: 3px; }

.search-desktop { display: flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, .1); border-radius: 999px; padding: 8px 16px; width: 280px; }
.search-desktop input { background: none; border: 0; outline: 0; color: #fff; font-size: 14px; width: 100%; }
.search-desktop input::placeholder { color: rgba(255, 255, 255, .6); }
.search-desktop button { background: none; border: 0; color: #fff; cursor: pointer; }

.burger { display: none; background: none; border: 1px solid rgba(255, 255, 255, .3); color: #fff; border-radius: 6px; padding: 6px 12px; cursor: pointer; }

.mainnav { border-top: 1px solid rgba(255, 255, 255, .15); }
.mainnav ul { list-style: none; display: flex; align-items: center; gap: 24px; padding: 8px 16px; margin: 0 auto; max-width: var(--max); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: .03em; }
.mainnav a { display: block; padding: 6px 0; }
.mainnav a:hover, .mainnav a.active { color: #fca5a5; }
.mainnav .media-link { color: #fca5a5; }
.mainnav .media-link:hover { color: #fff; }
.nav-mobile-extra { display: none; }

/* ================= TICKER ================= */
.ticker-bar { background: var(--pv-red); color: #fff; font-size: 14px; }
.ticker-bar .wrap { display: flex; align-items: center; gap: 16px; padding-top: 8px; padding-bottom: 8px; }
.ticker-label { flex-shrink: 0; background: #fff; color: var(--pv-red); font-weight: 700; padding: 2px 8px; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }
.ticker { overflow: hidden; flex: 1; }
.ticker-track { display: inline-block; white-space: nowrap; animation: pv-scroll 38s linear infinite; }
.ticker-track span { margin: 0 24px; }
@keyframes pv-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================= PUB ================= */
.ad { width: 100%; }
.ad-label { text-align: center; font-size: 10px; text-transform: uppercase; letter-spacing: .25em; color: #9ca3af; margin-bottom: 4px; }
.ad-box {
  display: grid; place-items: center; text-align: center; border-radius: 8px;
  border: 1px dashed rgba(11, 47, 107, .25);
  background: linear-gradient(135deg, rgba(11, 47, 107, .05), #fff 50%, rgba(210, 27, 40, .05));
}
.ad-box strong { display: block; font-size: 14px; color: var(--pv-blue); }
.ad-box small { font-size: 11px; color: var(--gray); }
.ad-leaderboard .ad-box { height: 110px; }
.ad-billboard .ad-box { height: 180px; }
.ad-rectangle .ad-box { height: 250px; }
.ad-sidebar .ad-box { height: 600px; }
.ad-sticky { position: sticky; top: 160px; }
.footer-ad .ad-label { color: rgba(255, 255, 255, .4); }

/* ================= HERO ================= */
.hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; padding: 32px 0; }
.hero { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1); }
.hero img { width: 100%; height: 420px; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #061c42 0%, rgba(6, 28, 66, .67) 45%, transparent 100%); }
.hero-content { position: absolute; bottom: 0; padding: 24px; color: #fff; }
.hero-content h1 { font-size: 36px; font-weight: 700; line-height: 1.15; margin-top: 12px; }
.hero-content h1 a:hover { text-decoration: underline; }
.hero-content p.lead { margin-top: 12px; max-width: 640px; color: rgba(255, 255, 255, .85); }
.hero-meta { margin-top: 12px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-meta .meta-txt { font-size: 12px; color: rgba(255, 255, 255, .7); }

.side-col { display: flex; flex-direction: column; gap: 16px; }
.side-item { display: flex; gap: 12px; background: #fff; padding: 12px; border-radius: 8px; box-shadow: var(--shadow); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.side-item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(11, 47, 107, .45); }
.side-item img { width: 112px; height: 80px; flex-shrink: 0; border-radius: 6px; object-fit: cover; }
.side-item h3 { font-size: 14px; font-weight: 700; line-height: 1.35; color: var(--pv-blue); margin-top: 6px; }

.follow-box { background: #fff; padding: 16px; border-radius: 8px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.follow-box p { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--pv-blue); margin-bottom: 10px; }

/* ================= SOCIAL ================= */
.social-row { display: flex; flex-wrap: wrap; gap: 8px; }
.social-row a { width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; font-size: 14px; font-weight: 700; transition: transform .2s, background .2s; }
.social-light a { background: rgba(11, 47, 107, .08); color: var(--pv-blue); }
.social-light a:hover { background: var(--pv-red); color: #fff; transform: scale(1.1); }
.social-dark a { background: rgba(255, 255, 255, .1); color: #fff; }
.social-dark a:hover { background: var(--pv-red); transform: scale(1.1); }

/* ================= SECTION TITLE ================= */
.section { padding: 0 0 8px; }
.section-title { display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 2px solid rgba(11, 47, 107, .15); padding-bottom: 8px; margin-bottom: 20px; }
.section-title h2 { font-size: 24px; font-weight: 700; color: var(--pv-blue); border-left: 4px solid var(--pv-red); padding-left: 12px; }
.section-title a { font-size: 14px; font-weight: 500; color: var(--pv-red); }
.section-title a:hover { text-decoration: underline; }

/* ================= CARDS ================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 32px; }
.span-all { grid-column: 1 / -1; }

.card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); display: flex; flex-direction: column; height: 100%; transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(11, 47, 107, .45); }
.card > a > img { width: 100%; height: 176px; object-fit: cover; }
.card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--pv-blue); margin-top: 8px; }
.card-body h3 a:hover { color: var(--pv-red); }
.card-excerpt { margin-top: 8px; font-size: 14px; color: #4b5563; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-meta { margin-top: 12px; font-size: 12px; color: var(--gray); }
.card-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.card-foot .kind { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: #9ca3af; }

.tag { display: inline-block; background: var(--pv-red); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; padding: 3px 8px; align-self: flex-start; }

.btn-read { display: inline-flex; align-items: center; gap: 8px; background: var(--pv-red); color: #fff; border-radius: 999px; padding: 8px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; transition: background .2s; }
.btn-read:hover { background: var(--pv-blue); }
.btn-hero { background: var(--pv-red); color: #fff; border-radius: 999px; padding: 8px 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.btn-hero:hover { background: #fff; color: var(--pv-blue); }

/* ================= DARK MEDIA SECTION ================= */
.media-section { background: var(--pv-deep); color: #fff; padding: 48px 0; margin-top: 56px; }
.media-section h2 { font-size: 24px; font-weight: 700; border-left: 4px solid var(--pv-red); padding-left: 12px; }
.media-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.pod-item { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: 8px; padding: 16px; margin-top: 20px; }
.pod-item a { font-family: Georgia, serif; font-weight: 600; }
.pod-item a:hover { color: #fca5a5; }
.pod-item p { margin-top: 4px; font-size: 14px; color: rgba(255, 255, 255, .7); }
.pod-item audio { width: 100%; margin-top: 12px; }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.more-link { display: inline-block; margin-top: 16px; font-size: 14px; color: #fca5a5; }
.more-link:hover { color: #fff; }

/* ================= RUBRIQUE TILES ================= */
.tile { background: var(--pv-blue); color: #fff; border-radius: 8px; padding: 24px 16px; text-align: center; font-weight: 600; transition: transform .25s, box-shadow .25s; }
.tile:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(11, 47, 107, .45); }

/* ================= PAGE HEADERS ================= */
.page-banner { background: var(--pv-blue); color: #fff; border-radius: var(--radius); padding: 32px 24px; margin-bottom: 32px; }
.page-banner .kicker { font-size: 11px; text-transform: uppercase; letter-spacing: .3em; color: #fca5a5; }
.page-banner h1 { font-size: 40px; font-weight: 700; }
.page-banner p { margin-top: 8px; color: rgba(255, 255, 255, .8); max-width: 640px; }
.page-banner.deep { background: var(--pv-deep); }
.hero-banner { background: var(--pv-blue); color: #fff; padding: 56px 0; }
.hero-banner h1 { font-size: 48px; font-weight: 700; margin-top: 8px; }
.hero-banner p { margin-top: 20px; max-width: 760px; font-size: 18px; color: rgba(255, 255, 255, .85); }
.hero-banner .kicker { font-size: 11px; text-transform: uppercase; letter-spacing: .3em; color: #fca5a5; }

/* ================= ARTICLE ================= */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 32px 0; }
.breadcrumb { font-size: 12px; color: var(--gray); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--pv-red); }
.article-title { font-size: 40px; font-weight: 700; line-height: 1.15; color: var(--pv-blue); margin-top: 12px; }
.article-meta { margin-top: 12px; font-size: 14px; color: var(--gray); }
.article-hero { margin-top: 24px; width: 100%; border-radius: var(--radius); object-fit: cover; max-height: 460px; }
.article-body { margin-top: 32px; font-size: 17px; color: #1f2937; }
.article-body p { margin-bottom: 18px; line-height: 1.85; }
.article-body .chapo { font-size: 19px; font-weight: 500; color: var(--pv-blue); }
.article-side { display: flex; flex-direction: column; gap: 24px; }

.sharebar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; background: #fff; padding: 12px; border-radius: 8px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.sharebar .lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--pv-blue); margin-right: 4px; }
.sharebar a { width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; color: #fff; font-size: 14px; font-weight: 700; transition: transform .2s; }
.sharebar a:hover { transform: scale(1.1); }
.sharebar .copy-btn { margin-left: auto; border: 1px solid rgba(11, 47, 107, .25); background: none; color: var(--pv-blue); border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 600; cursor: pointer; }
.sharebar .copy-btn:hover { background: var(--pv-blue); color: #fff; }

/* ================= PODCAST / VIDEO PAGES ================= */
.pod-row { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--line); display: flex; gap: 20px; margin-bottom: 24px; }
.pod-row img { width: 224px; height: 160px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.pod-row h2 { font-size: 20px; font-weight: 700; color: var(--pv-blue); }
.pod-row h2 a:hover { color: var(--pv-red); }
.pod-row p { margin-top: 4px; font-size: 14px; color: #4b5563; }
.pod-row audio { width: 100%; margin-top: 16px; }
.video-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.video-card .pad { padding: 16px; }
.video-card h2 { font-size: 18px; font-weight: 700; color: var(--pv-blue); }

/* ================= FORMS ================= */
.form-card { background: #fff; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { width: 100%; border: 1px solid #d1d5db; border-radius: 6px; padding: 10px 12px; font-size: 14px; outline: 0; margin-bottom: 16px; }
.field:focus { border-color: var(--pv-blue); }
.btn-primary { background: var(--pv-red); color: #fff; border: 0; border-radius: 6px; padding: 10px 24px; font-weight: 600; cursor: pointer; }
.btn-primary:hover { background: var(--pv-blue); }
.btn-blue { background: var(--pv-blue); color: #fff; border: 0; border-radius: 6px; padding: 10px 20px; font-weight: 600; cursor: pointer; }

/* ================= ABOUT ================= */
.value-card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.value-card h3 { color: var(--pv-blue); font-weight: 700; }
.value-card p { margin-top: 8px; font-size: 14px; color: #4b5563; }
.team-card { background: #fff; padding: 20px; border-radius: 8px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--line); }
.avatar { width: 64px; height: 64px; margin: 0 auto; border-radius: 999px; background: var(--pv-blue); color: #fff; display: grid; place-items: center; font-size: 20px; font-weight: 700; }
.stat { background: var(--pv-deep); color: #fff; border-radius: 8px; padding: 32px 16px; text-align: center; }
.stat b { font-family: Georgia, serif; font-size: 30px; display: block; }
.stat span { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255, 255, 255, .7); }
.about-block { margin-top: 48px; }
.about-block h2 { font-size: 24px; font-weight: 700; color: var(--pv-blue); border-left: 4px solid var(--pv-red); padding-left: 12px; }
.about-block > p { margin-top: 16px; color: #374151; line-height: 1.8; }

/* ================= FOOTER ================= */
.site-footer { margin-top: 64px; background: var(--pv-deep); color: rgba(255, 255, 255, .75); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 48px 0; }
.footer-grid h4 { color: #fff; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.footer-brand .logo-mark { width: 40px; height: 40px; font-size: 18px; }
.footer-about { margin-top: 16px; font-size: 14px; line-height: 1.7; }
.newsletter input { width: 100%; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); border-radius: 6px; padding: 8px 12px; color: #fff; font-size: 14px; outline: 0; margin-bottom: 12px; }
.newsletter input::placeholder { color: rgba(255, 255, 255, .5); }
.newsletter button { width: 100%; background: var(--pv-red); color: #fff; border: 0; border-radius: 6px; padding: 8px 12px; font-size: 14px; font-weight: 600; cursor: pointer; }
.newsletter .msg { font-size: 12px; color: #fca5a5; margin-top: 8px; }
.copyright { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0; text-align: center; font-size: 12px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .with-sidebar, .article-layout { grid-template-columns: 1fr; }
  .media-cols { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .ad-sidebar .ad-box { height: 300px; }
  .ad-sticky { position: static; }
  .article-title { font-size: 32px; }
  .hero-banner h1 { font-size: 38px; }
}

@media (max-width: 860px) {
  .burger { display: block; }
  .search-desktop { display: none; }
  .mainnav { display: none; }
  .mainnav.open { display: block; }
  .mainnav ul { flex-direction: column; align-items: stretch; gap: 2px; padding-bottom: 16px; }
  .nav-mobile-extra { display: block; padding-top: 12px; }
  .nav-mobile-extra form { display: flex; gap: 8px; background: rgba(255, 255, 255, .1); border-radius: 999px; padding: 8px 16px; }
  .nav-mobile-extra input { flex: 1; background: none; border: 0; outline: 0; color: #fff; font-size: 14px; text-transform: none; }
  .nav-mobile-extra input::placeholder { color: rgba(255, 255, 255, .6); }
  .nav-mobile-extra button { background: none; border: 0; color: #fff; cursor: pointer; }
  .nav-mobile-extra .social-row { margin-top: 12px; }
  .topbar .date { display: none; }
  .pod-row { flex-direction: column; }
  .pod-row img { width: 100%; }
}

@media (max-width: 700px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 32px 0; }
  .hero img { height: 240px; }
  .hero-content { padding: 16px; }
  .hero-content h1 { font-size: 22px; }
  .hero-content p.lead { display: none; }
  .article-title { font-size: 26px; }
  .hero-banner { padding: 40px 0; }
  .hero-banner h1 { font-size: 30px; }
  .page-banner h1 { font-size: 28px; }
  .ad-billboard .ad-box { height: 120px; }
  .ad-leaderboard .ad-box { height: 90px; }
  .topbar-right { gap: 10px; font-size: 11px; }
  .topbar-social { display: none; }
  .logo-name { font-size: 20px; }
}

/* ================= LOGO IMAJ ================= */
.logo-img { width: 46px; height: 46px; border-radius: 8px; object-fit: contain; background: #fff; padding: 3px; }
.footer-brand .logo-img { width: 40px; height: 40px; }

/* ================= BANDÒ NOTIFIKASYON ================= */
.pv-notify {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  max-width: 620px; margin: 0 auto;
  background: #fff; border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 24px 60px -16px rgba(6, 28, 66, .55);
  border: 1px solid rgba(11, 47, 107, .12);
  border-left: 5px solid var(--pv-red);
  display: flex; align-items: center; gap: 14px;
  transform: translateY(140%); opacity: 0; transition: transform .45s cubic-bezier(.2,.8,.3,1), opacity .35s;
}
.pv-notify.show { transform: translateY(0); opacity: 1; }
.pv-notify-ic { font-size: 30px; flex-shrink: 0; }
.pv-notify-txt { flex: 1; min-width: 0; }
.pv-notify-txt b { display: block; color: var(--pv-blue); font-size: 15px; font-family: Georgia, serif; }
.pv-notify-txt p { font-size: 13px; color: #4b5563; margin-top: 3px; line-height: 1.5; }
.pv-notify-act { display: flex; gap: 8px; flex-shrink: 0; }
.pv-notify-yes { background: var(--pv-red); color: #fff; border: 0; border-radius: 999px; padding: 10px 18px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.pv-notify-yes:hover { background: var(--pv-blue); }
.pv-notify-no { background: none; border: 1px solid #d1d5db; color: #6b7280; border-radius: 999px; padding: 10px 14px; font-size: 13px; cursor: pointer; }

@media (max-width: 700px) {
  .pv-notify { flex-direction: column; align-items: stretch; text-align: center; padding: 16px; }
  .pv-notify-act { flex-direction: column; }
  .pv-notify-yes, .pv-notify-no { width: 100%; }
}

/* ================= EKIP AK FOTO ================= */
.team-card .team-photo { width: 96px; height: 96px; border-radius: 999px; object-fit: cover; margin: 0 auto; display: block; border: 3px solid rgba(11,47,107,.12); }
.team-card .team-bio { margin-top: 10px; font-size: 13px; color: #4b5563; line-height: 1.6; }
