/* =========================================================
   MOTO747 BLOG SECTION
   ========================================================= */

.m747-blog-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            145deg,
            #f7f7f7 0%,
            #ffffff 48%,
            #f2f2f2 100%
        );
}

.m747-blog-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(225, 6, 0, 0.055),
            transparent 38%
        );
}

.m747-blog-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.35) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.35) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
}

.m747-blog-section .container {
    z-index: 2;
}

.m747-blog-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    color: #e10600;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

.m747-blog-subtitle::before {
    content: "";
    width: 38px;
    height: 2px;
    background: #e10600;
    box-shadow: 0 0 14px rgba(225, 6, 0, 0.38);
}

.m747-blog-title {
    max-width: 780px;
    margin: 0;
    color: #111111;
    font-size: clamp(42px, 4.7vw, 68px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -2.6px;
    text-transform: uppercase;
}

.m747-blog-title span {
    display: block;
    color: #e10600;
}

.m747-blog-line {
    position: relative;
    width: 90px;
    height: 3px;
    margin: 26px 0 28px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.10);
}

.m747-blog-line::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 56%;
    background: #e10600;
}

.m747-blog-description {
    max-width: 720px;
    margin: 0;
    color: #696969;
    font-size: 16px;
    line-height: 1.8;
}

.m747-blog-all-button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 8px 0 27px;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #111111;
    background: #111111;
    transition: 0.35s ease;
}

.m747-blog-all-button > span:first-child {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.m747-blog-button-icon {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #e10600;
    transition: 0.35s ease;
}

.m747-blog-all-button:hover {
    color: #ffffff;
    border-color: #e10600;
    background: #e10600;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(225, 6, 0, 0.18);
}

.m747-blog-all-button:hover .m747-blog-button-icon {
    color: #111111;
    background: #ffffff;
    transform: translateX(3px);
}

.m747-blog-component-wrapper {
    position: relative;
    z-index: 3;
    margin-top: 60px;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .m747-blog-section {
        padding: 90px 0;
    }

    .m747-blog-all-button {
        margin-top: 10px;
    }

    .m747-blog-component-wrapper {
        margin-top: 48px;
    }
}

@media (max-width: 767px) {

    .m747-blog-section {
        padding: 75px 0;
    }

    .m747-blog-subtitle {
        font-size: 9px;
        letter-spacing: 2.4px;
    }

    .m747-blog-subtitle::before {
        width: 25px;
    }

    .m747-blog-title {
        font-size: 37px;
        letter-spacing: -1.5px;
    }

    .m747-blog-description {
        font-size: 15px;
        line-height: 1.75;
    }

    .m747-blog-all-button {
        width: 100%;
        max-width: 310px;
        justify-content: space-between;
    }

    .m747-blog-component-wrapper {
        margin-top: 42px;
    }
}

@media (max-width: 480px) {

    .m747-blog-title {
        font-size: 31px;
    }

    .m747-blog-all-button {
        min-height: 55px;
    }
}

/* =========================================================
   MOTO747 PROFESSIONAL BLOG CARDS
   ========================================================= */

.m747-blog-grid {
    position: relative;
    width: 100%;
}

.m747-blog-grid .row {
    align-items: stretch;
}

.m747-blog-grid [class*="col-"] {
    display: flex;
}

.m747-blog-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.40s ease,
        box-shadow 0.40s ease,
        border-color 0.40s ease;
}

.m747-blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(225, 6, 0, 0.28);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.15);
}

.m747-blog-card-link,
.m747-blog-card-link:hover,
.m747-blog-card-link:focus {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}


/* GÖRSEL */

.m747-blog-card-image {
    position: relative;
    width: 100%;
    height: 270px;
    flex: 0 0 auto;
    overflow: hidden;
    background: #0a0a0a;
}

.m747-blog-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    filter:
        brightness(0.90)
        contrast(1.08)
        saturate(1.05);
    transition:
        transform 0.85s cubic-bezier(.16, 1, .3, 1),
        filter 0.45s ease;
}

.m747-blog-card:hover .m747-blog-card-image img {
    transform: scale(1.12);
    filter:
        brightness(0.70)
        contrast(1.12)
        saturate(1.08);
}

.m747-blog-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.06) 0%,
            rgba(0, 0, 0, 0.12) 42%,
            rgba(0, 0, 0, 0.82) 100%
        );
}


/* KATEGORİ ETİKETİ */

.m747-blog-card-category {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #e10600;
    box-shadow:
        0 12px 28px rgba(225, 6, 0, 0.22);
}


/* KART NUMARASI */

.m747-blog-card-number {
    position: absolute;
    top: 13px;
    right: 16px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.18);
    font-size: 40px;
    line-height: 1;
    font-weight: 950;
    pointer-events: none;
}


/* HOVER İNCELEME ALANI */

.m747-blog-card-view {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    color: #ffffff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.22);
    transform: translateY(18px);
    transition:
        opacity 0.40s ease,
        visibility 0.40s ease,
        transform 0.40s ease;
}

.m747-blog-card:hover .m747-blog-card-view {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.m747-blog-card-view-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    border-radius: 50%;
    background: #e10600;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        0 0 0 10px rgba(225, 6, 0, 0.10),
        0 18px 35px rgba(225, 6, 0, 0.24);
}


/* IŞIK GEÇİŞ EFEKTİ */

.m747-blog-card-shine {
    position: absolute;
    top: 0;
    left: -140%;
    z-index: 5;
    width: 60%;
    height: 100%;
    pointer-events: none;
    transform: skewX(-22deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.20),
            transparent
        );
    transition: left 0.85s ease;
}

.m747-blog-card:hover .m747-blog-card-shine {
    left: 150%;
}


/* İÇERİK */

.m747-blog-card-content {
    position: relative;
    min-height: 210px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 25px 24px 24px;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f8f8f8 100%
        );
}

.m747-blog-card-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 44px;
    height: 3px;
    background: #e10600;
    box-shadow:
        0 0 14px rgba(225, 6, 0, 0.40);
}


/* META */

.m747-blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 17px;
}

.m747-blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #888888;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.3px;
}

.m747-blog-card-meta i {
    color: #e10600;
    font-size: 11px;
}


/* BAŞLIK */

.m747-blog-card-content h3 {
    margin: 0;
    color: #171717;
    font-size: 21px;
    line-height: 1.38;
    font-weight: 850;
    letter-spacing: -0.55px;
    text-transform: uppercase;
    transition: color 0.30s ease;
}

.m747-blog-card:hover .m747-blog-card-content h3 {
    color: #e10600;
}


/* ALT BUTON */

.m747-blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding-top: 22px;
}

.m747-blog-card-read {
    color: #222222;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.m747-blog-card-arrow {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    transition:
        color 0.30s ease,
        background 0.30s ease,
        border-color 0.30s ease,
        transform 0.30s ease;
}

.m747-blog-card:hover .m747-blog-card-arrow {
    color: #ffffff;
    border-color: #e10600;
    background: #e10600;
    transform: translateX(4px);
}


/* RESPONSIVE */

@media (max-width: 1199px) {

    .m747-blog-card-image {
        height: 250px;
    }

    .m747-blog-card-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {

    .m747-blog-card-image {
        height: 290px;
    }
}

@media (max-width: 767px) {

    .m747-blog-card:hover {
        transform: translateY(-5px);
    }

    .m747-blog-card-image {
        height: 270px;
    }

    .m747-blog-card-content {
        min-height: 195px;
        padding: 22px;
    }

    .m747-blog-card-content h3 {
        font-size: 19px;
    }
}

@media (max-width: 480px) {

    .m747-blog-card-image {
        height: 235px;
    }

    .m747-blog-card-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .m747-blog-card-content h3 {
        font-size: 18px;
    }

    .m747-blog-card-view-icon {
        width: 54px;
        height: 54px;
    }
}

/* =========================================================
   MOTO747 BLOG COMPONENT - ÇAKIŞMASIZ SÜRÜM
   ========================================================= */

.m747-news-grid {
    position: relative;
    display: block;
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.m747-news-grid .row {
    align-items: stretch;
}

.m747-news-grid .row > div {
    display: flex;
    visibility: visible;
    opacity: 1;
}

.m747-news-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.09);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.m747-news-card:hover {
    transform: translateY(-10px);
    border-color: rgba(225, 6, 0, 0.34);
    box-shadow: 0 32px 75px rgba(0, 0, 0, 0.16);
}

.m747-news-link,
.m747-news-link:hover,
.m747-news-link:focus {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    visibility: visible;
    opacity: 1;
}


/* BLOG GÖRSELİ */

.m747-news-image {
    position: relative;
    display: block;
    width: 100%;
    height: 285px;
    min-height: 285px;
    flex: 0 0 285px;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    background: #111111;
}

.m747-news-image img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 285px;
    max-width: none;
    visibility: visible;
    opacity: 1;
    object-fit: cover;
    object-position: center;
    filter:
        brightness(0.92)
        contrast(1.08)
        saturate(1.06);
    transform: scale(1.02);
    transition:
        transform 0.8s cubic-bezier(.16, 1, .3, 1),
        filter 0.4s ease;
}

.m747-news-card:hover .m747-news-image img {
    transform: scale(1.11);
    filter:
        brightness(0.68)
        contrast(1.12)
        saturate(1.10);
}

.m747-news-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.12) 48%,
            rgba(0, 0, 0, 0.82) 100%
        );
}


/* BLOG ETİKETİ */

.m747-news-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    color: #ffffff;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    visibility: visible;
    opacity: 1;
    background: #e10600;
    box-shadow: 0 12px 28px rgba(225, 6, 0, 0.25);
}

.m747-news-badge i {
    color: #ffffff;
    font-size: 11px;
}


/* HOVER ALANI */

.m747-news-hover {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.18);
    transform: translateY(18px);
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s ease;
}

.m747-news-card:hover .m747-news-hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.m747-news-hover-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    border-radius: 50%;
    background: #e10600;
    box-shadow:
        0 0 0 10px rgba(225, 6, 0, 0.10),
        0 18px 35px rgba(225, 6, 0, 0.30);
}

.m747-news-hover strong {
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* IŞIK GEÇİŞİ */

.m747-news-shine {
    position: absolute;
    top: 0;
    left: -140%;
    z-index: 6;
    width: 60%;
    height: 100%;
    pointer-events: none;
    transform: skewX(-22deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.20),
            transparent
        );
    transition: left 0.85s ease;
}

.m747-news-card:hover .m747-news-shine {
    left: 150%;
}


/* BLOG İÇERİĞİ */

.m747-news-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    width: 100%;
    min-height: 285px;
    padding: 27px 26px 25px;
    visibility: visible;
    opacity: 1;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f7f7f7 100%
        );
}

.m747-news-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 26px;
    width: 48px;
    height: 3px;
    background: #e10600;
    box-shadow: 0 0 14px rgba(225, 6, 0, 0.42);
}


/* META */

.m747-news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    visibility: visible;
    opacity: 1;
}

.m747-news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #858585;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 600;
    visibility: visible;
    opacity: 1;
}

.m747-news-meta i {
    color: #e10600;
    font-size: 11px;
}


/* BAŞLIK */

.m747-news-content h3 {
    display: block;
    margin: 0 0 15px;
    color: #171717;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.6px;
    text-transform: uppercase;
    visibility: visible;
    opacity: 1;
    transition: color 0.3s ease;
}

.m747-news-card:hover .m747-news-content h3 {
    color: #e10600;
}


/* AÇIKLAMA */

.m747-news-content p {
    display: block;
    margin: 0;
    color: #747474;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    visibility: visible;
    opacity: 1;
}


/* ALT ALAN */

.m747-news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding-top: 24px;
    visibility: visible;
    opacity: 1;
}

.m747-news-footer > span:first-child {
    color: #222222;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.m747-news-arrow {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.m747-news-card:hover .m747-news-arrow {
    color: #ffffff;
    border-color: #e10600;
    background: #e10600;
    transform: translateX(4px);
}


/* TABLET */

@media (max-width: 1199px) {

    .m747-news-image,
    .m747-news-image img {
        height: 260px;
        min-height: 260px;
    }

    .m747-news-image {
        flex-basis: 260px;
    }

    .m747-news-content h3 {
        font-size: 21px;
    }
}


/* MOBİL */

@media (max-width: 767px) {

    .m747-news-card:hover {
        transform: translateY(-5px);
    }

    .m747-news-image,
    .m747-news-image img {
        height: 270px;
        min-height: 270px;
    }

    .m747-news-image {
        flex-basis: 270px;
    }

    .m747-news-content {
        min-height: 260px;
        padding: 23px;
    }

    .m747-news-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {

    .m747-news-image,
    .m747-news-image img {
        height: 235px;
        min-height: 235px;
    }

    .m747-news-image {
        flex-basis: 235px;
    }

    .m747-news-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .m747-news-content h3 {
        font-size: 18px;
    }

    .m747-news-content p {
        font-size: 13px;
    }
}