/* =========================================================
   BODRUM ADVENTURE - BLOG SECTION
========================================================= */

.ba-blog-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(255, 122, 0, .08),
            transparent 26%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(18, 80, 120, .07),
            transparent 30%
        ),
        #ffffff;
}

.ba-blog-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    top: -190px;
    right: -130px;
    border-radius: 50%;
    border: 1px solid rgba(255, 122, 0, .09);
}

.ba-blog-section::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    left: -80px;
    bottom: 60px;
    border-radius: 50%;
    background: rgba(11, 31, 51, .025);
}


/* =========================================================
   HEADER
========================================================= */

.ba-blog-header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 34px;
}

.ba-blog-heading {
    max-width: 760px;
}

.ba-blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 14px;

    color: #ff7a00;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.ba-blog-eyebrow i {
    font-size: 14px;
}

.ba-blog-heading h2 {
    margin: 0;

    color: #0b1f33;

    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 900;

    line-height: 1;

    letter-spacing: -2.5px;
}

.ba-blog-heading h2 span {
    color: #ff7a00;
}

.ba-blog-heading p {
    max-width: 680px;

    margin: 20px 0 0;

    color: #667585;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   HEADER BUTTON
========================================================= */

.ba-blog-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 8px 8px 8px 22px;

    border: 1px solid rgba(11, 31, 51, .12);

    border-radius: 100px;

    background: #ffffff;

    color: #0b1f33 !important;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 12px 35px rgba(11, 31, 51, .06);

    transition: all .35s ease;
}

.ba-blog-btn-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #ff7a00;

    color: #ffffff;

    transition: all .35s ease;
}

.ba-blog-all-btn:hover {
    transform: translateY(-4px);

    border-color: rgba(255, 122, 0, .32);

    box-shadow:
        0 18px 45px rgba(11, 31, 51, .11);
}

.ba-blog-all-btn:hover .ba-blog-btn-icon {
    transform: rotate(-35deg);
}


/* =========================================================
   DIVIDER
========================================================= */

.ba-blog-divider {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 42px;
}

.ba-blog-divider-line {
    width: 100px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #ff7a00,
        rgba(255, 122, 0, .08)
    );
}

.ba-blog-divider-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ff7a00;
}

.ba-blog-divider-text {
    color: #9aa4ad;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   BLOG COMPONENT
========================================================= */

.ba-blog-component {
    position: relative;
    z-index: 2;
}


/* =========================================================
   OPTIONAL CARD ENHANCEMENT
   Component içerisindeki kartlara otomatik hava verir.
========================================================= */

.ba-blog-component .card,
.ba-blog-component article,
.ba-blog-component .blog-card {
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.ba-blog-component .card:hover,
.ba-blog-component article:hover,
.ba-blog-component .blog-card:hover {
    transform: translateY(-8px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.ba-blog-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 55px;

    padding: 26px 28px;

    border: 1px solid rgba(11, 31, 51, .08);

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(11, 31, 51, .025),
            rgba(255, 122, 0, .035)
        );

    overflow: hidden;
}

.ba-blog-bottom::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -60px;
    top: -90px;

    border-radius: 50%;

    background: rgba(255, 122, 0, .06);
}

.ba-blog-bottom-content {
    display: flex;
    align-items: center;

    gap: 16px;
}

.ba-blog-bottom-icon {
    width: 54px;
    height: 54px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background: #0b1f33;

    color: #ffffff;

    font-size: 20px;
}

.ba-blog-bottom-content strong {
    display: block;

    color: #0b1f33;

    font-size: 15px;
    font-weight: 900;
}

.ba-blog-bottom-content span {
    display: block;

    margin-top: 4px;

    color: #7b8792;

    font-size: 12px;
}

.ba-blog-bottom-btn {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 13px 19px;

    border-radius: 100px;

    background: #0b1f33;

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;

    transition: .35s ease;
}

.ba-blog-bottom-btn:hover {
    background: #ff7a00;

    transform: translateY(-3px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .ba-blog-section {
        padding: 80px 0;
    }

    .ba-blog-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 25px;
    }

    .ba-blog-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 767px) {

    .ba-blog-section {
        padding: 65px 0;
    }

    .ba-blog-heading h2 {
        font-size: 42px;

        letter-spacing: -1.8px;
    }

    .ba-blog-heading p {
        font-size: 14px;
    }

    .ba-blog-all-btn {
        width: 100%;

        justify-content: space-between;
    }

    .ba-blog-bottom {
        padding: 22px;
    }

    .ba-blog-bottom-btn {
        width: 100%;

        justify-content: center;
    }

}


@media (max-width: 480px) {

    .ba-blog-heading h2 {
        font-size: 36px;
    }

    .ba-blog-bottom-content {
        align-items: flex-start;
    }

}