/* =========================
   ANASAYFA: HERO
   ========================= */

.tp-hero {
    background: #fff;
    color: #1e3350;
    overflow: hidden;
    position: relative;
}

.tp-hero--fullscreen {
    --tp-hero-header: var(--tp-header-height, 4.5rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - var(--tp-hero-header));
    min-height: calc(100svh - var(--tp-hero-header));
    padding: clamp(8px, 1.2vh, 16px) 0 clamp(10px, 1.5vh, 18px);
}

.tp-hero-inner {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    position: relative;
    z-index: 1;
}

/* Dünya haritası + ülke tablosu (PHP: #blueones, .table-ulkeler) */
.tp-hero-world {
    align-items: center;
    display: grid;
    flex: 1;
    gap: clamp(12px, 2vw, 28px);
    grid-template-columns: minmax(11rem, 30%) minmax(0, 1fr);
    min-height: 0;
    width: 100%;
}

.tp-hero-left {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 2vh, 22px);
    justify-content: center;
    max-height: 100%;
    min-height: 0;
    width: 100%;
}

.tp-hero-world-title {
    color: #004a98;
    flex-shrink: 0;
    font-size: clamp(1.1rem, 2.2vh + 0.6vw, 1.75rem);
    font-weight: 400;
    letter-spacing: .1em;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.tp-hero-world-title-line {
    color: inherit;
    display: block;
    font-weight: 800;
    letter-spacing: .08em;
}

.tp-hero-world-title-line + .tp-hero-world-title-line {
    margin-top: .12em;
}

.tp-hero-world-title .tp-counter-value {
    color: inherit;
    display: inline;
    font-size: inherit;
    font-variant-numeric: tabular-nums;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
}

.tp-hero-map {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    line-height: 0;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
}

.tp-hero-map-svg {
    display: block;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    min-height: 0;
    min-width: 0;
    width: auto;
}

@media (min-width: 992px) {
    .tp-hero-world {
        gap: clamp(8px, 1vh, 14px) clamp(16px, 2.5vw, 40px);
        grid-template-columns: minmax(10rem, 28%) minmax(0, 1fr);
    }
}

.tp-hero #blueones path,
.tp-hero #blueones polygon,
.tp-hero #blueones polyline {
    cursor: pointer;
    fill: #014a99a3;
    opacity: 1;
    transition: fill .3s ease, transform .3s ease, opacity .3s ease;
}

.tp-hero #blueones path.active,
.tp-hero #blueones polygon.active,
.tp-hero #blueones polyline.active,
.tp-hero #blueones path:hover,
.tp-hero #blueones polygon:hover,
.tp-hero #blueones polyline:hover {
    fill: #a50000 !important;
    opacity: .85;
    transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
    .tp-hero #blueones path,
    .tp-hero #blueones polygon,
    .tp-hero #blueones polyline {
        transition: fill .15s ease, opacity .15s ease;
    }

    .tp-hero #blueones path.active,
    .tp-hero #blueones polygon.active,
    .tp-hero #blueones polyline.active,
    .tp-hero #blueones path:hover,
    .tp-hero #blueones polygon:hover,
    .tp-hero #blueones polyline:hover {
        transform: none;
    }
}

.tp-hero-countries-panel {
    background: #f8fafc;
    border: 1px solid #e2eaf3;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 74, 152, .08);
    flex-shrink: 1;
    max-height: min(48vh, 20rem);
    min-height: 0;
    overflow-y: auto;
    padding: clamp(12px, 1.5vh, 18px);
    width: 100%;
}

.tp-hero-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    scrollbar-color: rgba(0, 74, 152, .25) transparent;
    scrollbar-width: thin;
}

.tp-hero-country {
    align-items: center;
    background: #fff;
    border: 1px solid #dce6f2;
    border-radius: 999px;
    color: #1e3350;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: clamp(.75rem, 1.1vh, .8125rem);
    font-weight: 500;
    gap: 7px;
    line-height: 1.2;
    margin: 0;
    padding: 6px 12px 6px 10px;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.tp-hero-country .iti__flag {
    border-radius: 2px;
    flex-shrink: 0;
    overflow: hidden;
}

.tp-hero-country:hover,
.tp-hero-country.active,
.tp-hero-country:focus-visible {
    background: #e8f1fa;
    border-color: #004a98;
    color: #004a98;
    outline: none;
}

.tp-hero-country.active {
    box-shadow: 0 0 0 1px rgba(0, 74, 152, .15);
    font-weight: 600;
}

.tp-hero-country--home {
    background: #fff9e8;
    border-color: rgba(201, 162, 39, .55);
    color: #5c4a12;
    font-weight: 600;
}

.tp-hero-country--home:hover,
.tp-hero-country--home.active,
.tp-hero-country--home:focus-visible {
    background: #fff3cc;
    border-color: rgba(201, 162, 39, .85);
    color: #4a3a0f;
}

@media (max-width: 991.98px) {
    .tp-hero--fullscreen {
        --tp-hero-header: 4rem;
        padding-bottom: 8px;
    }

    .tp-hero-world {
        align-content: center;
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(0, 1fr);
        justify-items: center;
    }

    .tp-hero-left {
        max-width: 100%;
        width: min(100%, 28rem);
    }

    .tp-hero-countries-panel {
        max-height: min(28vh, 12rem);
    }

    .tp-hero-countries {
        max-height: 100%;
        overflow-y: auto;
    }

    .tp-hero-map {
        justify-content: center;
    }

    .tp-hero-map-svg {
        height: auto;
        max-height: 100%;
        max-width: 100%;
        width: 100%;
    }

}

@media (max-height: 640px) and (min-width: 992px) {
    .tp-hero-world-title {
        font-size: clamp(.95rem, 2.8vh, 1.25rem);
    }

    .tp-hero-countries-panel {
        max-height: min(40vh, 16rem);
    }
}

/* =========================
   ANASAYFA: ORTAK BAŞLIKLAR
   ========================= */

.tp-section-title {
    color: #2b2d33;
    font-size: clamp(20px, 2vw, 28px);
    letter-spacing: .5px;
    position: relative;
    padding-bottom: 12px;
}

.tp-section-title:after {
    background: #004a98;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    transition: width .4s ease;
    width: 60px;
}

.tp-section-title:hover:after {
    width: 120px;
}

/* PHP: h2.modul-baslik */
.tp-modul-baslik {
    color: #004a98;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.35;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

/* =========================
   ANASAYFA: HİZMETLER (urunler2 — 2×3 grid, slider yok)
   ========================= */

.tp-services {
    background: #fff;
}

.tp-services-grid {
    border-top: 1px solid #004a98;
}

/* Hücreler: yatay çizgi + sol sütunda dikey ayırıcı */
.tp-service-cell {
    border-bottom: 1px solid #004a98;
    min-width: 0;
}

@media (min-width: 768px) {
    .tp-service-cell:nth-child(odd) {
        border-right: 1px solid #004a98;
    }

    .tp-service-cell:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .tp-service-cell:last-child {
        border-bottom: 0;
    }
}

.tp-service-card {
    align-items: center;
    color: inherit;
    display: flex;
    flex-direction: row;
    gap: 12px;
    height: 100%;
    min-height: 200px;
    padding: 20px 18px;
    transition: background-color .25s ease;
}

.tp-service-card:hover {
    background-color: #f8fafc;
}

.tp-service-card-media {
    align-items: center;
    display: flex;
    flex: 0 0 42%;
    justify-content: center;
    max-width: 280px;
    min-width: 0;
}

.tp-service-img {
    display: block;
    height: auto;
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

.tp-service-card-body {
    background: transparent;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
}

.tp-services .thumb-info-inner {
    color: #004a98;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    text-transform: none;
    white-space: normal;
}

.tp-services .thumb-info-type {
    color: #000;
    font-size: 16px;
    letter-spacing: .2px;
    line-height: 1.2;
}

.tp-services .thumb-info-type ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tp-services .thumb-info-type li {
    line-height: 1.2;
    padding: 2px 0;
}

.tp-services .thumb-info-type p {
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 991.98px) {
    .tp-service-card {
        flex-direction: column;
        min-height: 0;
        padding: 18px 14px;
        text-align: center;
    }

    .tp-service-card-media {
        flex: 0 0 auto;
        max-width: 220px;
        width: 100%;
    }

    .tp-service-img {
        max-height: 140px;
    }

    .tp-services .thumb-info-inner {
        font-size: 18px;
    }

    .tp-services .thumb-info-type {
        font-size: 15px;
        text-align: left;
    }
}

/* =========================
   ANASAYFA: SEKTÖRLER / REFERANSLAR
   ========================= */

/* Ortalı başlık: iki yanında ince çizgi */
.tp-section-title-center {
    align-items: center;
    color: #2b2d33;
    display: flex;
    font-size: clamp(20px, 2vw, 26px);
    gap: 20px;
    justify-content: center;
    letter-spacing: .5px;
    margin-bottom: 30px;
}

.tp-section-title-center:before,
.tp-section-title-center:after {
    background: #d8dde5;
    content: "";
    flex: 0 1 60px;
    height: 1px;
    max-width: 80px;
}

/* Listing kart: 3'lü sütun, hover animasyonu */
.tp-sectors .row.g-4 {
    align-items: stretch;
}

.tp-sectors .row.g-4 > [class*="col-"] {
    display: flex;
}

.tp-listing {
    background: #fff;
    border-radius: 4px;
    display: flex;
    flex: 1;
    flex-direction: column;
    /* En uzun sütun (6 link) + hover'da font büyümesi olmadan sabit yükseklik */
    min-height: 470px;
    overflow: hidden;
    padding: 30px 18px 24px;
    position: relative;
    transition: background .35s ease;
    width: 100%;
}

.tp-listing:hover {
    background: #f7f7f7;
}

.tp-listing-title {
    color: #2b2d33;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
}

/* Resim alanı: hover'da büyüyüp solar (sabit yükseklik, taşma kırpılır) */
.tp-listing-image-wrap {
    align-items: center;
    display: flex;
    flex: 0 0 170px;
    height: 170px;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
}

.tp-listing-image {
    height: auto;
    max-height: 150px;
    transition: transform .55s ease, opacity .55s ease;
    width: auto;
}

.tp-listing:hover .tp-listing-image {
    opacity: .25;
    transform: scale(1.4) translateY(10px);
}

/* Link listesi: normalde resimli alanın altında, hover'da yukarı kayar */
.tp-listing-links {
    margin: 0;
    padding: 0;
    position: relative;
    transition: transform .5s ease;
    z-index: 2;
}

.tp-listing-links li {
    margin-bottom: 4px;
    transition: transform .35s ease;
}

.tp-listing-links li a {
    color: #5f6064;
    font-size: .92rem;
    text-decoration: none;
    transition: color .25s ease;
}

.tp-listing-links li a:hover {
    color: #004a98;
}

.tp-listing:hover .tp-listing-links {
    transform: translateY(-150px);
}

/* Toplam m²: normal halde alt sırada, hover'da yukarı kayar (font-size sabit → yükseklik artmaz) */
.tp-listing-total {
    color: #5f6064;
    font-size: .95rem;
    line-height: 1.4;
    margin-top: auto;
    position: relative;
    transition: transform .5s ease, color .35s ease, font-weight .35s ease;
    z-index: 2;
}

.tp-listing-total strong {
    color: #2b2d33;
}

.tp-listing:hover .tp-listing-total {
    color: #004a98;
    font-weight: 700;
    transform: translateY(-150px);
}

/* Mobilde aşırı animasyonu yumuşat */
@media (max-width: 767.98px) {
    .tp-listing {
        min-height: 0;
    }

    .tp-listing:hover .tp-listing-links,
    .tp-listing:hover .tp-listing-total {
        transform: none;
    }

    .tp-listing:hover .tp-listing-total {
        font-weight: 400;
    }

    .tp-listing:hover .tp-listing-image {
        opacity: 1;
        transform: none;
    }
}

/* =========================
   ANASAYFA: RAKAMLARLA
   ========================= */

.tp-numbers {
    background:
        linear-gradient(135deg, rgba(0, 35, 72, .92) 0%, rgba(0, 74, 152, .88) 100%),
        url("/images/bg-lines.svg") center/cover no-repeat fixed;
    color: #fff;
    position: relative;
}

.tp-numbers .tp-section-title {
    color: #fff;
}

.tp-numbers .tp-section-title:after {
    background: #ffffff;
}

.tp-counter {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: 26px 10px 18px;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.tp-counter:hover {
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 14px 28px -16px rgba(0, 0, 0, .55);
    transform: translateY(-4px);
}

.tp-counter-value {
    color: #fff;
    display: block;
    font-size: clamp(22px, 2.4vw, 36px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
    overflow-wrap: anywhere;
}

/* Kapalı Alan: m² rakamın sağ üstünde (::after), sayım sırasında hiza bozulmaz */
.tp-counter-value--area {
    display: inline-block;
    max-width: 100%;
    padding-right: 0.6em;
    position: relative;
}

.tp-counter-value--area::after {
    color: #fff;
    content: "m\00B2";
    font-size: 0.4em;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 0.1em;
    white-space: nowrap;
}

.tp-counter-label {
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================
   SLICK: GENEL OK BUTONU STİLLERİ
   Her slider'a custom prevArrow/nextArrow olarak verilir.
   ========================= */

.tp-slick-prev,
.tp-slick-next {
    align-items: center;
    background: rgba(0, 74, 152, .08);
    border: 0;
    border-radius: 50%;
    color: transparent;
    display: flex;
    height: 44px;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background .25s ease, opacity .25s ease;
    width: 44px;
    z-index: 3;
}

.tp-slick-prev { left: -22px; }
.tp-slick-next { right: -22px; }

.tp-slick-prev:hover,
.tp-slick-next:hover {
    background: #004a98;
}

/* Bootstrap'in carousel-control-*-icon SVG ikonlarını yeniden kullanıyoruz */
.tp-slick-prev .carousel-control-prev-icon,
.tp-slick-next .carousel-control-next-icon {
    background-size: 60% 60%;
    filter: invert(1) brightness(.8);
    height: 18px;
    width: 18px;
}

.tp-slick-prev:hover .carousel-control-prev-icon,
.tp-slick-next:hover .carousel-control-next-icon {
    filter: invert(1) brightness(2);
}

/* Slick devre dışı buton durumu (infinite kapalıysa kullanılır) */
.tp-slick-prev.slick-disabled,
.tp-slick-next.slick-disabled {
    cursor: default;
    opacity: .35;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .tp-slick-prev { left: 4px; }
    .tp-slick-next { right: 4px; }
}

/* =========================
   ANASAYFA: REFERANSLAR (Slick Slider)
   ========================= */

.tp-references-slick {
    margin: 0;
    padding: 30px 0 60px;
    position: relative;
}

/* Slick'in default focus outline'ı */
.tp-references-slick .slick-slide:focus-visible {
    outline: none;
}

/* Slide içeriği (görsel + detay paneli) */
.tp-reference-image-link {
    background: #fff;
    display: block;
    overflow: hidden;
    padding: 12px;
}

.tp-reference-image {
    box-shadow: 0 50px 7px -39px rgba(0, 0, 0, .3);
    transition: transform .6s ease;
}

.tp-reference-image-link:hover .tp-reference-image {
    transform: scale(1.02);
}

.tp-reference-detail {
    padding: 20px 30px;
}

.tp-reference-name {
    color: #2b2d33;
    font-size: clamp(1.2rem, 1.4vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 18px;
}

.tp-reference-name a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.tp-reference-name a:hover {
    color: #004a98;
}

.tp-reference-row {
    border-bottom: 1px solid #eef0f3;
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    transition: background .25s ease;
}

.tp-reference-row:last-child {
    border-bottom: none;
}

.tp-reference-row:hover {
    background: #f7f8fa;
}

.tp-reference-label {
    color: #5f6064;
    flex: 0 0 40%;
    font-size: .92rem;
    font-weight: 600;
    padding-left: 8px;
}

.tp-reference-value {
    color: #2b2d33;
    flex: 0 0 60%;
    font-size: .92rem;
    padding-right: 8px;
}

/* Slick dot indikatörleri — eski Bootstrap indikatör görünümünün aynısı */
.tp-references-slick .slick-dots {
    bottom: -40px;
    line-height: 0;
}

.tp-references-slick .slick-dots li {
    height: 10px;
    margin: 0 6px;
    width: 10px;
}

.tp-references-slick .slick-dots li button {
    height: 10px;
    padding: 0;
    width: 10px;
}

.tp-references-slick .slick-dots li button:before {
    background: #c4d3e6;
    border-radius: 50%;
    color: transparent;
    content: "";
    height: 10px;
    left: 0;
    line-height: 10px;
    opacity: 1;
    top: 0;
    transition: background .25s ease, transform .25s ease;
    width: 10px;
}

.tp-references-slick .slick-dots li.slick-active button:before {
    background: #004a98;
    transform: scale(1.2);
}

@media (max-width: 991.98px) {
    .tp-reference-detail {
        padding: 18px 12px 8px;
    }
}

/* =========================
   ANASAYFA: MÜŞTERİLER (Grid)
   ========================= */

.tp-clients {
    background: #fafbfc;
}

.tp-clients-grid {
    padding: 4px 0;
}

.tp-client-item {
    align-items: center;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 4px;
    display: flex;
    height: 132px;
    justify-content: center;
    overflow: hidden;
    padding: 16px 22px;
    transition: border-color .25s ease, box-shadow .25s ease;
    width: 100%;
}

.tp-client-item:hover {
    border-color: #c4d3e6;
    box-shadow: 0 12px 22px -16px rgba(0, 74, 152, .35);
}

.tp-client-item img {
    filter: grayscale(100%) opacity(.65);
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: filter .35s ease, transform .35s ease;
}

.tp-client-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@media (max-width: 575.98px) {
    .tp-client-item {
        height: 104px;
        padding: 12px 16px;
    }
}

@media (min-width: 1200px) {
    .tp-client-item {
        height: 140px;
        padding: 18px 24px;
    }
}

/* =========================
   ANASAYFA: İÇERİK MERKEZİ (Slick Slider)
   ========================= */

.tp-content-hub {
    background: #fff;
}

.tp-content-slick {
    padding: 10px 0 44px; /* hover gölgesi + alt nokta indikatörleri */
    position: relative;
}

/* Slide arası boşluk: slick-slide'a margin + slick-list'e ters margin */
.tp-content-slick .slick-list {
    margin: 0 -12px;
}

.tp-content-slick .slick-slide {
    height: auto; /* Eşit yükseklik için flex track ile birlikte */
    padding: 0 12px;
}

/* Eşit yükseklikli kartlar için slick-track'i flex yap */
.tp-content-slick .slick-track {
    display: flex;
}

.tp-content-slick .slick-slide > div,
.tp-content-slick .slick-slide .tp-content-slide {
    height: 100%;
}

/* Drag sırasında imleç ve görsel/link sürükleme engeli */
.tp-content-slick.slick-slider {
    cursor: grab;
}

.tp-content-slick.slick-slider:active,
.tp-content-slick .slick-list.dragging {
    cursor: grabbing;
}

/* İçerik Merkezi'nde oklar kartların dikey merkezine biraz daha otursun */
.tp-content-slick .tp-slick-prev,
.tp-content-slick .tp-slick-next {
    top: 44%;
}

/* Alt nokta indikatörleri — tıklayarak sayfa/slide grubuna git */
.tp-content-slick .slick-dots {
    bottom: 4px;
    line-height: 0;
}

.tp-content-slick .slick-dots li {
    height: 10px;
    margin: 0 5px;
    width: 10px;
}

.tp-content-slick .slick-dots li button {
    height: 10px;
    padding: 0;
    width: 10px;
}

.tp-content-slick .slick-dots li button:before {
    background: #c4d3e6;
    border-radius: 50%;
    color: transparent;
    content: "";
    height: 10px;
    left: 0;
    line-height: 10px;
    opacity: 1;
    top: 0;
    transition: background .25s ease, transform .25s ease;
    width: 10px;
}

.tp-content-slick .slick-dots li.slick-active button:before {
    background: #004a98;
    transform: scale(1.2);
}

.tp-content-slick .slick-dots li button:hover:before,
.tp-content-slick .slick-dots li button:focus:before {
    background: #004a98;
    opacity: 0.75;
}

.tp-content-slick img,
.tp-content-slick a {
    -webkit-user-drag: none;
    user-drag: none;
}

.tp-content-card {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    height: 100%;
}

.tp-content-card:hover {
    border-color: #c4d3e6;
    box-shadow: 0 18px 35px -22px rgba(0, 74, 152, .35);
    transform: translateY(-4px);
}

.tp-content-image-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.tp-content-image {
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
    width: 100%;
}

.tp-content-card:hover .tp-content-image {
    transform: scale(1.06);
}

.tp-content-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 18px 20px 20px;
}

.tp-content-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    /* Maks. 3 satırda kes */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tp-content-title a {
    color: #2b2d33;
    text-decoration: none;
    transition: color .25s ease;
}

.tp-content-title a:hover {
    color: #004a98;
}

.tp-content-meta {
    color: #8a8d93;
    font-size: .82rem;
    margin: 0;
}

.tp-content-meta li {
    align-items: center;
    display: inline-flex;
    gap: 6px;
}

.tp-content-meta i {
    color: #004a98;
    font-size: .95rem;
}

.tp-content-readmore {
    color: #004a98;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: auto;
    text-decoration: none;
    text-transform: uppercase;
    transition: gap .25s ease, color .25s ease;
}

.tp-content-readmore:hover {
    color: #002a5c;
    text-decoration: underline;
}

/* Tümünü Gör butonu (genel amaçlı outline) */
.tp-btn-outline {
    align-items: center;
    border: 2px solid #004a98;
    border-radius: 999px;
    color: #004a98;
    display: inline-flex;
    font-size: .85rem;
    font-weight: 600;
    gap: 6px;
    letter-spacing: .5px;
    padding: 10px 24px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .25s ease, color .25s ease;
}

.tp-btn-outline:hover {
    background: #004a98;
    color: #fff;
}
