/* =========================================================
   TZL BLOG SAYFASI
========================================================= */

.tzl-blog-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.tzl-blog-page,
.tzl-blog-page * {
    box-sizing: border-box;
}


/* =========================================================
   HERO
========================================================= */

.tzl-blog-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #06111f;
}

.tzl-blog-hero-image {
    position: absolute;
    inset: 0;
}

.tzl-blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: tzlBlogHeroZoom 14s ease-in-out infinite alternate;
}

@keyframes tzlBlogHeroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.tzl-blog-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 12, 24, 0.97) 0%,
            rgba(3, 15, 29, 0.84) 40%,
            rgba(3, 15, 29, 0.45) 72%,
            rgba(3, 15, 29, 0.62) 100%
        );
}

.tzl-blog-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
}

.tzl-blog-hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 135px 0 105px;
    color: #ffffff;
}

.tzl-blog-hero-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #67bbff;
}

.tzl-blog-hero-label span {
    width: 55px;
    height: 2px;
    background: #168ce3;
}

.tzl-blog-hero-content h1 {
    max-width: 830px;
    margin: 0;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.98;
    font-weight: 300;
    letter-spacing: -4px;
    color: #ffffff;
}

.tzl-blog-hero-content h1 strong {
    display: block;
    margin-top: 12px;
    font-weight: 800;
    color: #168ce3;
}

.tzl-blog-hero-content > p {
    max-width: 670px;
    margin: 34px 0 30px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.76);
}

.tzl-blog-breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.tzl-blog-breadcrumb .breadcrumb-item,
.tzl-blog-breadcrumb .breadcrumb-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
}

.tzl-blog-breadcrumb .breadcrumb-item a {
    transition: 0.3s ease;
}

.tzl-blog-breadcrumb .breadcrumb-item a:hover {
    color: #ffffff;
}

.tzl-blog-breadcrumb .breadcrumb-item.active {
    color: #168ce3;
}

.tzl-blog-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.38);
}

.tzl-blog-scroll {
    position: absolute;
    right: 60px;
    bottom: 42px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: right center;
}

.tzl-blog-scroll i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transform: rotate(90deg);
    transition: 0.3s ease;
}

.tzl-blog-scroll:hover {
    color: #168ce3;
}

.tzl-blog-scroll:hover i {
    color: #ffffff;
    border-color: #168ce3;
    background: #168ce3;
}


/* =========================================================
   INTRO
========================================================= */

.tzl-blog-intro {
    padding: 120px 0 75px;
    background: #ffffff;
}

.tzl-blog-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 34px;
}

.tzl-blog-section-number {
    min-width: 58px;
    padding-top: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #168ce3;
    border-top: 2px solid #168ce3;
}

.tzl-blog-section-label {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #168ce3;
}

.tzl-blog-section-heading h2,
.tzl-blog-content-header h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 300;
    letter-spacing: -2.5px;
    color: #0b1827;
}

.tzl-blog-section-heading h2 strong,
.tzl-blog-content-header h2 strong {
    display: block;
    font-weight: 800;
}

.tzl-blog-intro-text {
    padding-left: 35px;
    border-left: 1px solid #dce3ea;
}

.tzl-blog-intro-text p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.9;
    color: #66727f;
}

.tzl-blog-intro-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   KATEGORİLER
========================================================= */

.tzl-blog-categories {
    position: relative;
    z-index: 3;
    padding-bottom: 95px;
    background: #ffffff;
}

.tzl-blog-categories-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #dfe6ec;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(8, 25, 42, 0.08);
}

.tzl-blog-category {
    position: relative;
    min-height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 25px 15px;
    overflow: hidden;
    color: #0b1827;
    text-decoration: none;
    border-right: 1px solid #dfe6ec;
    transition: 0.4s ease;
}

.tzl-blog-category:last-child {
    border-right: 0;
}

.tzl-blog-category::before {
    position: absolute;
    content: "";
    inset: auto 0 0;
    height: 0;
    background: #071523;
    transition: 0.4s ease;
}

.tzl-blog-category::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #168ce3;
    transform: scaleX(0);
    transition: 0.4s ease;
}

.tzl-blog-category i,
.tzl-blog-category span {
    position: relative;
    z-index: 2;
}

.tzl-blog-category i {
    font-size: 25px;
    color: #168ce3;
    transition: 0.4s ease;
}

.tzl-blog-category span {
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.4s ease;
}

.tzl-blog-category:hover::before,
.tzl-blog-category.active::before {
    height: 100%;
}

.tzl-blog-category:hover::after,
.tzl-blog-category.active::after {
    transform: scaleX(1);
}

.tzl-blog-category:hover,
.tzl-blog-category.active {
    color: #ffffff;
}

.tzl-blog-category:hover i,
.tzl-blog-category.active i {
    color: #67bbff;
    transform: translateY(-4px);
}


/* =========================================================
   BLOG CONTENT
========================================================= */

.tzl-blog-content {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(
            rgba(242, 245, 248, 0.91),
            rgba(242, 245, 248, 0.91)
        ),
        url("/Sistem/duvar4.png") center center / cover no-repeat;
    background-attachment: fixed;
}

.tzl-blog-content::before {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(22, 140, 227, 0.06),
            transparent 52%
        );
    pointer-events: none;
}

.tzl-blog-content-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.tzl-blog-content-description {
    max-width: 430px;
    padding-bottom: 8px;
}

.tzl-blog-content-description p {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: #687582;
}

.tzl-blog-component-wrapper {
    position: relative;
    z-index: 2;
}


/* =========================================================
   BLOG COMPONENT KARTLARI
========================================================= */

.tzl-blog-component-wrapper .card {
    height: 100%;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(8, 25, 42, 0.10);
    transition: 0.45s ease;
}

.tzl-blog-component-wrapper .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(8, 25, 42, 0.18);
}

.tzl-blog-component-wrapper .card img {
    width: 100%;
    transition: transform 0.7s ease;
}

.tzl-blog-component-wrapper .card:hover img {
    transform: scale(1.08);
}

.tzl-blog-component-wrapper .card-body {
    position: relative;
    padding: 30px;
}

.tzl-blog-component-wrapper .card-title {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 750;
    color: #0b1827;
}

.tzl-blog-component-wrapper .card-text {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #687582;
}

.tzl-blog-component-wrapper .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    color: #168ce3;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border: 0;
    background: transparent;
}

.tzl-blog-component-wrapper .btn:hover {
    color: #071523;
}


/* =========================================================
   ÖZELLİKLER
========================================================= */

.tzl-blog-features {
    padding: 115px 0;
    background: #ffffff;
}

.tzl-blog-feature-card {
    position: relative;
    min-height: 340px;
    padding: 45px 38px;
    overflow: hidden;
    border: 1px solid #dfe6ec;
    background: #ffffff;
    transition: 0.4s ease;
}

.tzl-blog-feature-card::before {
    position: absolute;
    content: "";
    inset: auto 0 0;
    height: 0;
    background: #071523;
    transition: 0.45s ease;
}

.tzl-blog-feature-card > * {
    position: relative;
    z-index: 2;
}

.tzl-blog-feature-card > span {
    position: absolute;
    top: 30px;
    right: 32px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #9ba7b2;
}

.tzl-blog-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 40px;
    color: #168ce3;
    font-size: 25px;
    border: 1px solid #d1dbe4;
    transition: 0.4s ease;
}

.tzl-blog-feature-card h3 {
    margin: 0 0 18px;
    font-size: 23px;
    font-weight: 750;
    color: #0b1827;
    transition: 0.4s ease;
}

.tzl-blog-feature-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
    color: #687582;
    transition: 0.4s ease;
}

.tzl-blog-feature-card:hover {
    transform: translateY(-8px);
    border-color: #071523;
    box-shadow: 0 25px 55px rgba(8, 25, 42, 0.17);
}

.tzl-blog-feature-card:hover::before {
    height: 100%;
}

.tzl-blog-feature-card:hover .tzl-blog-feature-icon {
    color: #ffffff;
    border-color: #168ce3;
    background: #168ce3;
}

.tzl-blog-feature-card:hover h3 {
    color: #ffffff;
}

.tzl-blog-feature-card:hover p {
    color: rgba(255, 255, 255, 0.65);
}

.tzl-blog-feature-card:hover > span {
    color: #168ce3;
}


/* =========================================================
   CTA
========================================================= */

.tzl-blog-cta {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #168ce3;
}

.tzl-blog-cta-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 84% 50%,
            rgba(255, 255, 255, 0.20),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #168ce3 0%,
            #0767ad 100%
        );
}

.tzl-blog-cta::before {
    position: absolute;
    content: "";
    top: -170px;
    right: -80px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.tzl-blog-cta::after {
    position: absolute;
    content: "";
    right: 80px;
    bottom: -280px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.tzl-blog-cta-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.tzl-blog-cta-content span {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.72);
}

.tzl-blog-cta-content h2 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -2.5px;
    color: #ffffff;
}

.tzl-blog-cta-content h2 strong {
    display: block;
    font-weight: 800;
}

.tzl-blog-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-width: 280px;
    padding: 22px 26px 22px 30px;
    color: #0b1827;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    background: #ffffff;
    transition: 0.35s ease;
}

.tzl-blog-cta-button i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: #071523;
    transition: 0.35s ease;
}

.tzl-blog-cta-button:hover {
    color: #ffffff;
    background: #071523;
    transform: translateY(-5px);
}

.tzl-blog-cta-button:hover i {
    color: #071523;
    background: #ffffff;
    transform: translateX(5px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .tzl-blog-categories-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .tzl-blog-category {
        border-bottom: 1px solid #dfe6ec;
    }

}

@media (max-width: 991px) {

    .tzl-blog-hero {
        min-height: 620px;
    }

    .tzl-blog-hero-content {
        padding: 130px 0 90px;
    }

    .tzl-blog-scroll {
        display: none;
    }

    .tzl-blog-intro {
        padding: 90px 0 65px;
    }

    .tzl-blog-intro-text {
        padding: 30px 0 0;
        border-top: 1px solid #dce3ea;
        border-left: 0;
    }

    .tzl-blog-content {
        padding: 90px 0;
        background-attachment: scroll;
    }

    .tzl-blog-content-header {
        display: block;
    }

    .tzl-blog-content-description {
        max-width: 650px;
        margin-top: 25px;
    }

    .tzl-blog-cta-wrapper {
        display: block;
    }

    .tzl-blog-cta-action {
        margin-top: 40px;
    }

}

@media (max-width: 767px) {

    .tzl-blog-hero {
        min-height: 570px;
    }

    .tzl-blog-hero-overlay {
        background: rgba(3, 14, 27, 0.84);
    }

    .tzl-blog-hero-content {
        padding: 115px 0 75px;
    }

    .tzl-blog-hero-content h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .tzl-blog-hero-content > p {
        font-size: 16px;
        line-height: 1.7;
    }

    .tzl-blog-section-heading {
        display: block;
    }

    .tzl-blog-section-number {
        width: 50px;
        margin-bottom: 24px;
    }

    .tzl-blog-section-heading h2,
    .tzl-blog-content-header h2,
    .tzl-blog-cta-content h2 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .tzl-blog-categories-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .tzl-blog-category {
        border-right: 1px solid #dfe6ec;
    }

    .tzl-blog-features {
        padding: 80px 0;
    }

    .tzl-blog-cta {
        padding: 85px 0;
    }

    .tzl-blog-cta-button {
        width: 100%;
        min-width: auto;
    }

}

@media (max-width: 480px) {

    .tzl-blog-hero-content h1 {
        font-size: 41px;
    }

    .tzl-blog-hero-label {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .tzl-blog-categories-wrapper {
        grid-template-columns: 1fr;
    }

    .tzl-blog-category {
        min-height: 105px;
        border-right: 0;
    }

}

/* =========================================================
   TZL BLOG COMPONENT KARTLARI
========================================================= */

.tzl-blog-grid {
    position: relative;
    margin-top: 10px;
}


/* Kart */

.tzl-blog-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(7, 21, 35, 0.13);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.tzl-blog-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow:
        0 32px 72px rgba(7, 21, 35, 0.25),
        0 0 35px rgba(22, 140, 227, 0.14);
}


/* Hover mavi çerçeve */

.tzl-blog-card::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 8;
    border: 2px solid #168ce3;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.tzl-blog-card:hover::before {
    opacity: 1;
}


/* Link */

.tzl-blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.tzl-blog-card-link:hover {
    color: inherit;
    text-decoration: none;
}


/* Görsel */

.tzl-blog-card-image {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    background: #071523;
}

.tzl-blog-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.85s cubic-bezier(.2, .75, .3, 1),
        filter 0.5s ease;
}

.tzl-blog-card:hover .tzl-blog-card-image img {
    transform: scale(1.18) rotate(0.4deg);
    filter: brightness(0.65) saturate(1.08);
}


/* Alt gradient */

.tzl-blog-card-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            to top,
            rgba(7, 21, 35, 0.72),
            transparent 65%
        );
    transition: background 0.4s ease;
}

.tzl-blog-card:hover .tzl-blog-card-gradient {
    background:
        linear-gradient(
            135deg,
            rgba(7, 21, 35, 0.38),
            rgba(22, 140, 227, 0.82)
        );
}


/* Kategori etiketi */

.tzl-blog-card-category {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: rgba(7, 21, 35, 0.84);
    backdrop-filter: blur(8px);
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.tzl-blog-card-category i {
    color: #69bcff;
}

.tzl-blog-card:hover .tzl-blog-card-category {
    background: #071523;
    transform: translateY(-3px);
}


/* Ortadaki inceleme alanı */

.tzl-blog-card-view {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.tzl-blog-card:hover .tzl-blog-card-view {
    opacity: 1;
    transform: translateY(0);
}

.tzl-blog-card-view-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(8px);
    transform: scale(0.55) rotate(-20deg);
    transition:
        transform 0.45s ease,
        background 0.35s ease;
}

.tzl-blog-card:hover .tzl-blog-card-view-icon {
    transform: scale(1) rotate(0);
}

.tzl-blog-card-view strong {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Parlama */

.tzl-blog-card-shine {
    position: absolute;
    top: -45%;
    left: -95%;
    z-index: 6;
    width: 45%;
    height: 190%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.30),
            transparent
        );
    transform: rotate(22deg);
    pointer-events: none;
    transition: left 0.9s ease;
}

.tzl-blog-card:hover .tzl-blog-card-shine {
    left: 145%;
}


/* İçerik */

.tzl-blog-card-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 27px 26px;
    overflow: hidden;
    background: #ffffff;
}

.tzl-blog-card-content::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #168ce3;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s ease;
}

.tzl-blog-card:hover .tzl-blog-card-content::after {
    transform: scaleX(1);
}


/* Meta */

.tzl-blog-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 17px;
}

.tzl-blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7b8792;
    font-size: 11px;
    font-weight: 650;
}

.tzl-blog-card-meta i {
    color: #168ce3;
}


/* Başlık */

.tzl-blog-card-title {
    margin: 0 0 16px;
    color: #0b1827;
    font-size: 23px;
    font-weight: 750;
    line-height: 1.4;
    transition: color 0.35s ease;
}

.tzl-blog-card:hover .tzl-blog-card-title {
    color: #168ce3;
}


/* Açıklama */

.tzl-blog-card-description {
    margin: 0 0 24px;
    color: #687582;
    font-size: 14px;
    line-height: 1.8;
}


/* Alt alan */

.tzl-blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e2e8ed;
}

.tzl-blog-card-footer > span {
    color: #071523;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    transition: color 0.35s ease;
}

.tzl-blog-card:hover .tzl-blog-card-footer > span {
    color: #168ce3;
}


/* Ok */

.tzl-blog-card-arrow {
    width: 43px;
    height: 43px;
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    background: #071523;
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.tzl-blog-card:hover .tzl-blog-card-arrow {
    background: #168ce3;
    transform: translateX(5px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .tzl-blog-card-image {
        height: 245px;
    }

}

@media (max-width: 767px) {

    .tzl-blog-card {
        max-width: 480px;
        margin-right: auto;
        margin-left: auto;
    }

    .tzl-blog-card-image {
        height: 290px;
    }

    .tzl-blog-card-title {
        font-size: 21px;
    }

}

@media (max-width: 480px) {

    .tzl-blog-card-image {
        height: 240px;
    }

    .tzl-blog-card-content {
        padding: 24px 21px;
    }

    .tzl-blog-card-title {
        font-size: 19px;
    }

    .tzl-blog-card-meta {
        gap: 10px;
    }

}

.blog-detail-hero {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 180px 0 85px;
    background: #071522;
}

.blog-detail-hero-image {
    position: absolute;
    inset: 0;
}

.blog-detail-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
}

.blog-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 16, 27, 0.97) 0%,
            rgba(4, 16, 27, 0.82) 48%,
            rgba(4, 16, 27, 0.34) 100%
        ),
        linear-gradient(
            0deg,
            rgba(4, 16, 27, 0.88) 0%,
            transparent 66%
        );
}

.blog-detail-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.2) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.2) 1px,
            transparent 1px
        );
    background-size: 68px 68px;
}

.blog-detail-hero-content {
    position: relative;
    z-index: 3;
    max-width: 950px;
}

.blog-detail-category {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    color: #d8b36a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.8px;
}

.blog-detail-category i {
    font-size: 15px;
}

.blog-detail-hero h1 {
    max-width: 980px;
    margin: 0 0 28px;
    color: #ffffff;
    font-size: clamp(38px, 5.5vw, 70px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.blog-detail-breadcrumb {
    margin: 0;
}

.blog-detail-breadcrumb .breadcrumb-item,
.blog-detail-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    text-decoration: none;
}

.blog-detail-breadcrumb .breadcrumb-item a {
    transition: color 0.25s ease;
}

.blog-detail-breadcrumb .breadcrumb-item a:hover {
    color: #d8b36a;
}

.blog-detail-breadcrumb .breadcrumb-item.active {
    max-width: 350px;
    overflow: hidden;
    color: #ffffff;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-detail-breadcrumb
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35);
}

.blog-detail-hero-line {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38%;
    height: 5px;
    background: #d8b36a;
}

.blog-detail-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.95)
        ),
        url("/Sistem/duvar4.png") center/cover fixed;
}

.blog-detail-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 7%;
    width: 1px;
    height: 100%;
    background: rgba(10, 44, 82, 0.05);
}

.blog-detail-article {
    position: relative;
}

.blog-detail-featured-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #e7ebee;
    box-shadow: 0 25px 70px rgba(10, 44, 82, 0.14);
}

.blog-detail-featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.blog-detail-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-detail-featured-image:hover img {
    transform: scale(1.035);
}

.blog-detail-image-label {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 19px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(7, 27, 47, 0.93);
    backdrop-filter: blur(10px);
}

.blog-detail-image-label i {
    color: #d8b36a;
}

.blog-detail-content {
    position: relative;
    z-index: 3;
    width: calc(100% - 52px);
    margin-top: -42px;
    padding: 55px 55px 50px;
    background: #ffffff;
    box-shadow: 0 20px 65px rgba(10, 44, 82, 0.10);
}

.blog-detail-content-header {
    margin-bottom: 34px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6eaed;
}

.blog-detail-content-mini-title {
    display: block;
    margin-bottom: 10px;
    color: #d0a950;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.blog-detail-content-header h2 {
    max-width: 720px;
    margin: 0;
    color: #0a2c52;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
}

.blog-detail-title-line {
    width: 90px;
    height: 3px;
    margin-top: 22px;
    background: #edf0f2;
}

.blog-detail-title-line span {
    width: 35px;
    height: 100%;
    display: block;
    background: #d8b36a;
}

.blog-detail-description {
    color: #596977;
    font-size: 16px;
    line-height: 1.95;
}

.blog-detail-description > p:first-child::first-letter {
    float: left;
    margin: 8px 12px 0 0;
    color: #0a2c52;
    font-size: 58px;
    font-weight: 800;
    line-height: 0.8;
}

.blog-detail-description p {
    margin-bottom: 23px;
}

.blog-detail-description p:last-child {
    margin-bottom: 0;
}

.blog-detail-description h2,
.blog-detail-description h3,
.blog-detail-description h4,
.blog-detail-description h5 {
    margin-top: 38px;
    margin-bottom: 17px;
    color: #0a2c52;
    font-weight: 800;
    line-height: 1.3;
}

.blog-detail-description h2 {
    font-size: 31px;
}

.blog-detail-description h3 {
    font-size: 25px;
}

.blog-detail-description h4 {
    font-size: 20px;
}

.blog-detail-description ul,
.blog-detail-description ol {
    margin-bottom: 25px;
    padding-left: 23px;
}

.blog-detail-description li {
    margin-bottom: 11px;
    padding-left: 5px;
}

.blog-detail-description strong {
    color: #19364f;
    font-weight: 800;
}

.blog-detail-description a {
    color: #168bd8;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-detail-description img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 32px auto;
}

.blog-detail-description blockquote {
    position: relative;
    margin: 38px 0;
    padding: 30px 35px 30px 42px;
    color: #0a2c52;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.7;
    border-left: 4px solid #d8b36a;
    background: #f4f6f7;
}

.blog-detail-description blockquote::before {
    content: "\f10d";
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(10, 44, 82, 0.08);
    font-family: "Font Awesome 6 Free";
    font-size: 42px;
    font-weight: 900;
}

.blog-detail-description table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.blog-detail-description th,
.blog-detail-description td {
    padding: 13px 15px;
    border: 1px solid #e0e6ea;
}

.blog-detail-description th {
    color: #ffffff;
    background: #0a2c52;
}

.blog-detail-tags {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-top: 35px;
    padding: 27px 30px;
    border: 1px solid #e2e8ec;
    background: rgba(255, 255, 255, 0.85);
}

.blog-detail-tags-title {
    min-width: max-content;
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 7px;
    color: #0a2c52;
    font-size: 13px;
    font-weight: 800;
}

.blog-detail-tags-title i {
    color: #d0a950;
}

.blog-detail-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.blog-detail-tag {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    color: #60707d;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #dfe5e9;
    background: #ffffff;
    transition: all 0.25s ease;
}

.blog-detail-tag:hover {
    color: #ffffff;
    border-color: #0a2c52;
    background: #0a2c52;
}

.blog-detail-bottom-navigation {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
}

.blog-detail-back-button,
.blog-detail-contact-button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 23px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.blog-detail-back-button {
    color: #0a2c52;
    border: 1px solid #d7dfe5;
    background: #ffffff;
}

.blog-detail-back-button:hover {
    color: #ffffff;
    border-color: #0a2c52;
    background: #0a2c52;
}

.blog-detail-contact-button {
    color: #ffffff;
    border: 1px solid #168bd8;
    background: #168bd8;
}

.blog-detail-contact-button:hover {
    color: #ffffff;
    border-color: #0a2c52;
    background: #0a2c52;
}

.blog-detail-bottom-navigation i {
    transition: transform 0.3s ease;
}

.blog-detail-back-button:hover i {
    transform: translateX(-4px);
}

.blog-detail-contact-button:hover i {
    transform: translateX(4px);
}

.blog-detail-sidebar {
    position: sticky;
    top: 115px;
}

.blog-detail-about-card {
    position: relative;
    padding: 38px 32px;
    overflow: hidden;
    color: #ffffff;
    background: #0a2c52;
    box-shadow: 0 18px 55px rgba(10, 44, 82, 0.13);
}

.blog-detail-about-card::after {
    content: "";
    position: absolute;
    top: -55px;
    right: -55px;
    width: 180px;
    height: 180px;
    border: 25px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.blog-detail-about-icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #0a2c52;
    font-size: 21px;
    background: #d8b36a;
}

.blog-detail-about-card > span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 9px;
    color: #d8b36a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.blog-detail-about-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
}

.blog-detail-about-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.8;
}

.blog-detail-about-card a {
    position: relative;
    z-index: 2;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 19px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #168bd8;
    background: #168bd8;
    transition: all 0.3s ease;
}

.blog-detail-about-card a:hover {
    color: #0a2c52;
    border-color: #d8b36a;
    background: #d8b36a;
}

.blog-detail-about-card a i {
    transition: transform 0.3s ease;
}

.blog-detail-about-card a:hover i {
    transform: translateX(4px);
}

.blog-detail-sidebar-tags {
    margin-top: 28px;
    padding: 31px 30px;
    border: 1px solid #e1e7eb;
    background: #ffffff;
    box-shadow: 0 16px 50px rgba(10, 44, 82, 0.07);
}

.blog-detail-sidebar-title {
    margin-bottom: 23px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e8ecef;
}

.blog-detail-sidebar-title span {
    display: block;
    margin-bottom: 6px;
    color: #d0a950;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.blog-detail-sidebar-title h3 {
    margin: 0;
    color: #0a2c52;
    font-size: 22px;
    font-weight: 800;
}

.blog-detail-sidebar-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.blog-detail-sidebar-tag-list span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    color: #61717d;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #e0e5e9;
    background: #f8f9fa;
}

.blog-detail-service-card {
    position: relative;
    min-height: 400px;
    margin-top: 28px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(6, 27, 47, 0.97),
            rgba(3, 17, 29, 0.99)
        );
}

.blog-detail-service-background {
    position: absolute;
    right: -30px;
    bottom: -30px;
    color: rgba(255, 255, 255, 0.035);
    font-size: 190px;
    line-height: 1;
    transform: rotate(-8deg);
}

.blog-detail-service-content {
    position: relative;
    z-index: 2;
    padding: 40px 32px;
}

.blog-detail-service-content > span {
    display: block;
    margin-bottom: 10px;
    color: #d8b36a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.blog-detail-service-content h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.35;
}

.blog-detail-service-content p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 1.8;
}

.blog-detail-service-content a {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 21px;
    color: #0a2c52;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    background: #d8b36a;
    transition: all 0.3s ease;
}

.blog-detail-service-content a:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.blog-detail-service-content a i {
    transition: transform 0.3s ease;
}

.blog-detail-service-content a:hover i {
    transform: translateX(4px);
}

.blog-detail-security-note {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
    padding: 22px 24px;
    border: 1px solid #e1e7eb;
    background: rgba(255, 255, 255, 0.85);
}

.blog-detail-security-note > i {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d0a950;
    border: 1px solid rgba(216, 179, 106, 0.3);
    background: rgba(216, 179, 106, 0.08);
}

.blog-detail-security-note strong {
    display: block;
    margin-bottom: 4px;
    color: #0a2c52;
    font-size: 13px;
}

.blog-detail-security-note span {
    display: block;
    color: #7a8792;
    font-size: 11px;
}

.blog-detail-cta {
    padding: 0 0 100px;
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.95)
        ),
        url("/Sistem/duvar4.png") center/cover fixed;
}

.blog-detail-cta-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px;
    overflow: hidden;
    background: #0a2c52;
    box-shadow: 0 25px 65px rgba(10, 44, 82, 0.20);
}

.blog-detail-cta-wrapper::after {
    content: "";
    position: absolute;
    top: -100px;
    right: 24%;
    width: 250px;
    height: 250px;
    border: 35px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

.blog-detail-cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.blog-detail-cta-content > span {
    display: block;
    margin-bottom: 10px;
    color: #d8b36a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.blog-detail-cta-content h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: clamp(29px, 4vw, 42px);
    font-weight: 800;
}

.blog-detail-cta-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.8;
}

.blog-detail-cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.blog-detail-cta-action a {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 25px;
    color: #0a2c52;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    background: #d8b36a;
    transition: all 0.3s ease;
}

.blog-detail-cta-action a:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.blog-detail-cta-action i {
    transition: transform 0.3s ease;
}

.blog-detail-cta-action a:hover i {
    transform: translateX(4px);
}

@media (max-width: 1199px) {

    .blog-detail-content {
        width: calc(100% - 30px);
        padding: 46px 40px;
    }

    .blog-detail-cta-wrapper {
        padding: 50px 45px;
    }

}

@media (max-width: 991px) {

    .blog-detail-hero {
        min-height: 500px;
        padding: 150px 0 70px;
    }

    .blog-detail-section {
        padding: 80px 0;
    }

    .blog-detail-sidebar {
        position: static;
    }

    .blog-detail-featured-image,
    .blog-detail-featured-image img {
        min-height: 430px;
    }

    .blog-detail-cta-wrapper {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 767px) {

    .blog-detail-hero {
        min-height: 460px;
        padding: 135px 0 55px;
    }

    .blog-detail-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .blog-detail-section {
        padding: 60px 0;
    }

    .blog-detail-featured-image,
    .blog-detail-featured-image img {
        min-height: 330px;
    }

    .blog-detail-image-label {
        right: 18px;
        bottom: 18px;
    }

    .blog-detail-content {
        width: calc(100% - 20px);
        margin-top: -25px;
        padding: 36px 27px;
    }

    .blog-detail-description {
        font-size: 15px;
    }

    .blog-detail-description > p:first-child::first-letter {
        font-size: 48px;
    }

    .blog-detail-tags {
        flex-direction: column;
        gap: 15px;
        padding: 24px;
    }

    .blog-detail-tags-title {
        padding-top: 0;
    }

    .blog-detail-bottom-navigation {
        flex-direction: column;
    }

    .blog-detail-back-button,
    .blog-detail-contact-button {
        width: 100%;
    }

    .blog-detail-cta {
        padding-bottom: 65px;
    }

    .blog-detail-cta-wrapper {
        padding: 38px 27px;
    }

    .blog-detail-cta-action,
    .blog-detail-cta-action a {
        width: 100%;
    }

}

@media (max-width: 575px) {

    .blog-detail-hero {
        min-height: 420px;
    }

    .blog-detail-category {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .blog-detail-hero h1 {
        font-size: 33px;
    }

    .blog-detail-breadcrumb .breadcrumb-item,
    .blog-detail-breadcrumb .breadcrumb-item a {
        font-size: 11px;
    }

    .blog-detail-breadcrumb .breadcrumb-item.active {
        max-width: 130px;
    }

    .blog-detail-featured-image,
    .blog-detail-featured-image img {
        min-height: 265px;
    }

    .blog-detail-image-label {
        padding: 11px 14px;
        font-size: 10px;
    }

    .blog-detail-content {
        width: 100%;
        margin-top: 0;
        padding: 31px 22px;
    }

    .blog-detail-content-header h2 {
        font-size: 27px;
    }

    .blog-detail-description blockquote {
        padding: 25px 22px;
        font-size: 16px;
    }

    .blog-detail-about-card,
    .blog-detail-sidebar-tags,
    .blog-detail-service-content {
        padding-right: 24px;
        padding-left: 24px;
    }
    

}

.blog-all-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 24px;
    color: #0a2c52;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(10, 44, 82, 0.22);
    background: transparent;
    transition: all 0.3s ease;
}

.blog-all-button:hover {
    color: #ffffff;
    border-color: #0a2c52;
    background: #0a2c52;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(10, 44, 82, 0.16);
}

.blog-all-button i {
    transition: transform 0.3s ease;
}

.blog-all-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 575px) {

    .blog-all-button {
        width: 100%;
    }

}