/* Adres Takip — Frontend CSS
   Palet: #4a4e69, #6d597a, #723d46, #e76f51, #502f4c, #005f73, #9a8c98
   Font: Plus Jakarta Sans (CDN)
   Açık tema — dark mode YASAK
*/

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fafaf8;
    color: #2a2a30;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: #4a4e69; text-decoration: none; transition: color 0.15s; }
a:hover { color: #723d46; }

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

h1, h2, h3, h4 { color: #2a2a30; line-height: 1.3; }

.at-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.at-header {
    background: #fff;
    border-bottom: 1px solid #ece8e2;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.at-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    flex-wrap: wrap;
}
.at-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.at-logo-strong {
    font-size: 19px;
    font-weight: 700;
    color: #4a4e69;
    letter-spacing: -0.3px;
}
.at-logo:hover { text-decoration: none; }

.at-nav {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}
.at-nav > a, .at-nav-dropdown-btn {
    color: #4a4e69;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    border-radius: 4px;
    transition: background 0.15s;
}
.at-nav > a:hover, .at-nav-dropdown-btn:hover {
    background: #f3f1ee;
    color: #4a4e69;
    text-decoration: none;
}

.at-nav-dropdown {
    position: relative;
}
.at-nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ece8e2;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    min-width: 180px;
    padding: 6px 0;
    display: none;
    z-index: 50;
}
.at-nav-dropdown.at-acik .at-nav-dropdown-menu { display: block; }
.at-nav-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #4a4e69;
    font-size: 14px;
}
.at-nav-dropdown-menu a:hover {
    background: #f3f1ee;
    text-decoration: none;
}
.at-arrow { font-size: 10px; }

.at-mobil-tetik {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    cursor: pointer;
}
.at-mobil-tetik span {
    display: block;
    width: 22px;
    height: 2px;
    background: #4a4e69;
    border-radius: 2px;
}

/* === MAIN === */
.at-main {
    padding: 32px 0 48px;
    min-height: 60vh;
}

/* === HERO === */
.at-hero {
    text-align: center;
    padding: 24px 0 36px;
    margin-bottom: 32px;
    border-bottom: 1px solid #ece8e2;
}
.at-hero-baslik {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2a2a30;
    letter-spacing: -0.5px;
}
.at-hero-baslik span {
    color: #723d46;
}
.at-hero-aciklama {
    font-size: 16px;
    color: #5a5a62;
    max-width: 620px;
    margin: 0 auto;
}
.at-hero-aciklama strong { color: #4a4e69; }

/* === BÖLÜMLER === */
.at-bolum { margin-bottom: 40px; }

.at-bolum-baslik-satiri {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}
.at-bolum-baslik {
    font-size: 22px;
    font-weight: 600;
    color: #4a4e69;
}
.at-bolum-link {
    font-size: 14px;
    font-weight: 500;
    color: #723d46;
}
.at-bolum-aciklama {
    color: #5a5a62;
    margin-bottom: 18px;
}

.at-bolum-cta {
    background: #4a4e69;
    color: #fff;
    padding: 32px 24px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}
.at-bolum-cta h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}
.at-bolum-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}

/* === SİTE KARTLARI === */
.at-site-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}
.at-site-kart {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    transition: all 0.15s;
    position: relative;
    min-height: 160px;
}
.at-site-kart:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #ece8e2;
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
}
.at-site-kart-rozet {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #1d9e75;
    color: #fff;
    padding: 2px 9px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}
.at-site-kart-logo {
    height: 56px;
    border-radius: 6px;
    background: #f3f1ee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 6px 10px;
}
.at-site-kart-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.at-site-kart-logo-yer {
    font-size: 22px;
    font-weight: 700;
    color: #6d597a;
}
.at-site-kart-icerik { flex: 1; }
.at-site-kart-ad {
    font-size: 17px;
    font-weight: 600;
    color: #2a2a30;
    margin-bottom: 4px;
}
.at-site-kart-bonus {
    font-size: 13px;
    color: #723d46;
    font-weight: 500;
}
.at-site-kart-cta {
    color: #4a4e69;
    font-size: 13px;
    font-weight: 600;
    align-self: flex-end;
}

/* === BUTONLAR === */
.at-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.15s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    text-decoration: none;
}
.at-btn-primary {
    background: #e76f51;
    color: #fff;
}
.at-btn-primary:hover {
    background: #d65a3a;
    color: #fff;
    text-decoration: none;
}
.at-btn-ikincil {
    background: #fff;
    color: #4a4e69;
    border: 1px solid #d6d2cc;
}
.at-btn-ikincil:hover {
    background: #f3f1ee;
    color: #4a4e69;
    text-decoration: none;
}
.at-btn-buyuk {
    padding: 14px 28px;
    font-size: 16px;
}
.at-btn-tavsiye {
    background: #1d9e75;
    color: #fff;
}
.at-btn-tavsiye:hover {
    background: #168a64;
    color: #fff;
    text-decoration: none;
}

/* İnce çizgi buton — lisans araştırma gibi ikincil aksiyonlar için */
.at-btn-cizgi {
    background: transparent;
    color: #4a4e69;
    border: 1px solid #d6d2cc;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
}
.at-btn-cizgi:hover {
    background: #f3f1ee;
    border-color: #4a4e69;
    color: #4a4e69;
    text-decoration: none;
}

/* Lisans araştırma butonunun konumu — profil baslik kartından sonra */
.at-profil-arastirma {
    margin-bottom: 16px;
    text-align: center;
}

/* Sayfalama (kategori, tavsiye sayfaları) */
.at-sayfalama {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 16px 0;
    flex-wrap: wrap;
}
.at-sayfa-link {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    color: #4a4e69;
    border: 1px solid #d6d2cc;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}
.at-sayfa-link:hover {
    background: #f3f1ee;
    border-color: #4a4e69;
    color: #4a4e69;
    text-decoration: none;
}
.at-sayfa-link.at-sayfa-pasif {
    color: #b8b2a8;
    background: #faf9f6;
    cursor: default;
    pointer-events: none;
}
.at-sayfa-bilgi {
    color: #5a5a62;
    font-size: 14px;
    font-weight: 500;
}

/* === PROFİL SAYFASI === */
.at-profil { max-width: 880px; margin: 0 auto; }

.at-profil-baslik-kart {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}
.at-profil-logo {
    height: 80px;
    max-width: 240px;
    border-radius: 10px;
    background: #f3f1ee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 8px 14px;
}
.at-profil-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.at-profil-logo-yer {
    font-size: 30px;
    font-weight: 700;
    color: #6d597a;
}
.at-profil-ad {
    font-size: 28px;
    font-weight: 700;
    color: #2a2a30;
    margin-bottom: 4px;
}
.at-profil-lisans {
    font-size: 14px;
    color: #5a5a62;
}
.at-profil-lisans a { color: #4a4e69; font-weight: 500; }
.at-profil-rozet {
    display: inline-block;
    background: #1d9e75;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
}

.at-profil-bonus {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    margin-bottom: 20px;
}
.at-profil-bonus-aciklama {
    color: #4a4a52;
    font-size: 16px;
    line-height: 1.65;
}
.at-profil-bonus-aciklama p { margin-bottom: 8px; }
.at-profil-bonus-aciklama p:last-child { margin-bottom: 0; }

.at-profil-aciklama {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    margin-bottom: 20px;
    font-size: 16px;
}
.at-profil-aciklama p { margin-bottom: 12px; }
.at-profil-aciklama p:last-child { margin-bottom: 0; }
.at-profil-aciklama strong { color: #4a4e69; }
.at-profil-aciklama a { color: #723d46; }

.at-profil-bolum-baslik {
    font-size: 18px;
    font-weight: 600;
    color: #4a4e69;
    margin-bottom: 14px;
}

.at-profil-bilgi, .at-profil-limitler, .at-profil-sosyal {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    margin-bottom: 20px;
}

.at-bilgi-tablo, .at-limit-blok {
    border-top: 1px solid #ece8e2;
}
.at-bilgi-satir, .at-limit-satir {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid #ece8e2;
    font-size: 15px;
}
.at-bilgi-satir:last-child, .at-limit-satir:last-child { border-bottom: none; }
.at-bilgi-anahtar, .at-limit-etiket {
    color: #5a5a62;
}
.at-bilgi-deger, .at-limit-deger {
    color: #2a2a30;
    font-weight: 600;
}
.at-limit-not {
    color: #888;
    font-size: 13px;
    padding: 4px 0 12px;
    line-height: 1.5;
}
.at-limit-blok + .at-limit-blok {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #ece8e2;
}

.at-profil-ekran {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.at-sosyal-liste {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.at-sosyal-liste a {
    display: inline-block;
    padding: 6px 14px;
    background: #f3f1ee;
    border-radius: 4px;
    color: #4a4e69;
    font-size: 13px;
    font-weight: 500;
}
.at-sosyal-liste a:hover {
    background: #ece8e2;
    text-decoration: none;
}

/* Tavsiye kutusu — yeşil shield */
.at-tavsiye-kutu {
    background: #e8f5e9;
    border-left: 4px solid #1d9e75;
    border-radius: 8px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.at-tavsiye-shield {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1d9e75;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.at-tavsiye-icerik strong {
    display: block;
    color: #0e6e4a;
    font-size: 16px;
    margin-bottom: 4px;
}
.at-tavsiye-icerik p {
    color: #2a5a44;
    font-size: 14px;
    margin-bottom: 10px;
}

/* FAQ */
.at-profil-faq {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    margin-bottom: 20px;
}
.at-faq-liste { display: flex; flex-direction: column; gap: 8px; }
.at-faq-item {
    border: 1px solid #ece8e2;
    border-radius: 6px;
    overflow: hidden;
}
.at-faq-item summary {
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    list-style: none;
    background: #fafaf8;
    color: #2a2a30;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.at-faq-item summary::-webkit-details-marker { display: none; }
.at-faq-item summary::after {
    content: '+';
    font-size: 22px;
    color: #9a8c98;
    font-weight: 300;
}
.at-faq-item[open] summary::after { content: '−'; }
.at-faq-item[open] summary {
    background: #f3f1ee;
    border-bottom: 1px solid #ece8e2;
}
.at-faq-cevap {
    padding: 14px 18px;
    color: #4a4a52;
    font-size: 15px;
    line-height: 1.65;
}

/* Son notlar */
.at-profil-son-notlar {
    padding: 18px 4px;
    margin-bottom: 24px;
    color: #5a5a62;
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
}
.at-son-notlar-icerik p { margin-bottom: 8px; }

/* Bottom CTA */
.at-profil-bottom-cta {
    text-align: center;
    margin: 32px 0 20px;
}

/* Bildir linki */
.at-profil-bildir {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
}
.at-profil-bildir a { color: #888; }

/* === STATİK SAYFALAR === */
.at-statik-sayfa {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 32px 36px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.at-statik-sayfa h1 {
    font-size: 28px;
    color: #4a4e69;
    margin-bottom: 16px;
}
.at-statik-sayfa h2 {
    font-size: 19px;
    color: #4a4e69;
    margin: 22px 0 8px;
}
.at-statik-sayfa p { margin-bottom: 12px; color: #4a4a52; }
.at-statik-sayfa a { color: #723d46; }
.at-statik-sayfa ul, .at-statik-sayfa ol { margin: 8px 0 12px 22px; }
.at-statik-sayfa li { margin-bottom: 4px; color: #4a4a52; }

.at-404 { text-align: center; padding: 60px 36px; }
.at-404 h1 {
    font-size: 80px;
    color: #4a4e69;
    margin-bottom: 0;
}
.at-404 h2 {
    font-size: 22px;
    color: #5a5a62;
    margin-bottom: 16px;
}

/* === LİSANS ARAŞTIRMA SAYFASI === */
.at-arastirma-sayfa { max-width: 820px; }
.at-arastirma-baslik {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ece8e2;
}
.at-arastirma-etiket {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #005f73;
    background: rgba(0,95,115,0.08);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.at-arastirma-altmetin {
    color: #5a5a62;
    font-size: 16px;
    margin-top: 4px;
}
.at-arastirma-bolum { margin-bottom: 36px; }
.at-arastirma-bolum h2 {
    font-size: 22px;
    color: #4a4e69;
    margin-bottom: 14px;
    margin-top: 0;
}
.at-arastirma-bolum h3 {
    font-size: 17px;
    color: #4a4e69;
    margin: 20px 0 8px;
}
.at-arastirma-bolum p { margin-bottom: 12px; }

/* Lisans tier kartları */
.at-lisans-kart {
    background: #fff;
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 14px;
    border-left: 4px solid #9a8c98;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.at-lisans-tier-1 { border-left-color: #005f73; }
.at-lisans-tier-2 { border-left-color: #4a4e69; }
.at-lisans-tier-3 { border-left-color: #6d597a; }
.at-lisans-tier-4 { border-left-color: #723d46; }
.at-lisans-tier-5 { border-left-color: #e76f51; }
.at-lisans-tier-6 { border-left-color: #9a8c98; background: #faf9f6; }

.at-lisans-baslik {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.at-lisans-baslik h3 {
    font-size: 18px;
    color: #2a2a30;
    margin: 0 0 4px;
}
.at-lisans-yildiz {
    color: #e76f51;
    font-size: 14px;
    letter-spacing: 2px;
}
.at-lisans-pay {
    color: #5a5a62;
    font-size: 12px;
    font-weight: 500;
    background: #f3f1ee;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
}
.at-lisans-kart p {
    color: #4a4a52;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 12px;
}
.at-lisans-kart p:last-child { margin-bottom: 0; }
.at-lisans-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #5a5a62;
    padding-top: 10px;
    border-top: 1px solid #ece8e2;
    margin-top: 4px;
}
.at-lisans-meta span strong {
    color: #4a4e69;
    font-weight: 600;
}

/* Yöntem notu kutusu */
.at-arastirma-not {
    background: #f7f5f1;
    border-left: 3px solid #4a4e69;
    padding: 16px 20px;
    margin-top: 20px;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    color: #4a4a52;
    line-height: 1.6;
}
.at-arastirma-not strong { color: #4a4e69; }

@media (max-width: 640px) {
    .at-lisans-baslik { flex-direction: column; align-items: flex-start; }
    .at-lisans-pay { margin-top: 0; }
}

/* === FORM === */
.at-form { max-width: 540px; }
.at-form-row { margin-bottom: 14px; }
.at-form-row label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
    color: #4a4a52;
}
.at-form input[type=text],
.at-form input[type=email],
.at-form input[type=url],
.at-form select,
.at-form textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid #d6d2cc;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
}
.at-form input:focus,
.at-form select:focus,
.at-form textarea:focus {
    outline: none;
    border-color: #4a4e69;
}
.at-form textarea { resize: vertical; min-height: 120px; }

.at-form-basari {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
}
.at-form-hata {
    background: #fdecea;
    color: #b44;
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
}

.at-bos-durum {
    text-align: center;
    padding: 40px 20px;
    color: #5a5a62;
}
.at-bos-durum p { margin-bottom: 16px; }

/* === FOOTER === */
.at-footer {
    background: #2a2a30;
    color: rgba(255,255,255,0.75);
    padding: 36px 0 0;
    margin-top: 60px;
    font-size: 14px;
}
.at-footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 28px;
}
.at-footer-sutun-genis { padding-right: 20px; }
.at-footer-logo {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.at-footer-aciklama {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-size: 13px;
}
.at-footer-baslik {
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}
.at-footer-sutun ul { list-style: none; }
.at-footer-sutun li { margin-bottom: 6px; }
.at-footer-sutun a {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}
.at-footer-sutun a:hover {
    color: #fff;
    text-decoration: none;
}
.at-footer-alt {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* === STİCKY REKLAM (footprint için class isimleri özenle seçilmiş) === */
.at-pin-block {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 320px;
    border: 1px solid #ece8e2;
    overflow: hidden;
    animation: at-pin-acil 0.4s ease-out;
}
@keyframes at-pin-acil {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.at-pin-block[data-pin="kapali"] { display: none; }
.at-pin-link {
    display: flex;
    gap: 12px;
    padding: 14px 36px 14px 14px;
    align-items: center;
    color: inherit;
    text-decoration: none;
}
.at-pin-link:hover { text-decoration: none; }
.at-pin-gorsel img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    background: #f3f1ee;
}
.at-pin-icerik { flex: 1; min-width: 0; }
.at-pin-baslik {
    display: block;
    font-weight: 600;
    color: #2a2a30;
    font-size: 14px;
    margin-bottom: 2px;
}
.at-pin-metin {
    display: block;
    color: #5a5a62;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.at-pin-kapat {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    color: #9a8c98;
    cursor: pointer;
    padding: 2px 6px;
    line-height: 1;
}
.at-pin-kapat:hover { color: #4a4e69; }

/* === RESPONSIVE === */
@media (max-width: 880px) {
    .at-hero-baslik { font-size: 26px; }
    .at-profil-baslik-kart {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .at-profil-logo { margin: 0 auto; }
    .at-profil-cta-blok { width: 100%; }
    .at-profil-cta-blok .at-btn { width: 100%; }
    .at-statik-sayfa { padding: 24px 22px; }
    .at-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .at-footer-sutun-genis { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .at-mobil-tetik { display: flex; }
    .at-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0;
        gap: 0;
    }
    .at-nav.at-acik { display: flex; }
    .at-nav > a, .at-nav-dropdown-btn {
        padding: 12px 8px;
        text-align: left;
        width: 100%;
    }
    .at-nav-dropdown { width: 100%; }
    .at-nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 16px;
    }
    .at-pin-block {
        right: 8px;
        left: 8px;
        max-width: none;
    }
    .at-site-grid {
        grid-template-columns: 1fr;
    }
    .at-bolum-cta { padding: 24px 16px; }
}
