/* Home2 — Blog listesi ve yazı detayı */

body.home2-blog-page {
    background: #050608 !important;
}

body.home2-blog-page .home-body-bg,
body.home2-blog-page .special-container,
body.home2-blog-page main {
    background: transparent !important;
}

.home2-page__crumbs-current--truncate {
    max-width: min(280px, 42vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Hero */
.home2-blog__hero {
    position: relative;
    margin-bottom: 22px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: #07080d;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

.home2-blog__hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 176, 32, 0.12) 0%, transparent 36%),
        radial-gradient(ellipse 70% 90% at 100% 40%, rgba(255, 140, 0, 0.1) 0%, transparent 62%),
        #07080d;
}

.home2-blog__hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #ffb020, transparent);
    box-shadow: 0 0 18px rgba(255, 153, 0, 0.35);
}

.home2-blog__hero-inner {
    position: relative;
    z-index: 1;
    padding: 28px 30px 32px;
}

.home2-blog__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 176, 32, 0.22);
    background: rgba(255, 176, 32, 0.08);
    color: #ffb020;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home2-blog__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffb020;
    box-shadow: 0 0 10px rgba(255, 176, 32, 0.65);
}

.home2-blog__title {
    margin: 0 0 12px;
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.home2-blog__title-accent {
    color: #ffb020;
}

.home2-blog__desc {
    margin: 0;
    max-width: 640px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
}

/* Grid */
.home2-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home2-blog__card {
    min-width: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(14, 16, 22, 0.98) 0%, rgba(10, 11, 16, 0.98) 100%);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home2-blog__card:hover {
    border-color: rgba(255, 176, 32, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.home2-blog__card--featured {
    grid-column: 1 / -1;
}

.home2-blog__card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.home2-blog__card--featured .home2-blog__card-link {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    min-height: 260px;
}

.home2-blog__card-media {
    position: relative;
    overflow: hidden;
    background: #0c0e14;
    aspect-ratio: 16 / 10;
}

.home2-blog__card--featured .home2-blog__card-media {
    aspect-ratio: auto;
    min-height: 260px;
}

.home2-blog__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.home2-blog__card:hover .home2-blog__card-media img {
    transform: scale(1.04);
}

.home2-blog__card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 18px 20px;
    flex: 1;
}

.home2-blog__card--featured .home2-blog__card-body {
    justify-content: center;
    padding: 24px 28px;
}

.home2-blog__card-date {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 176, 32, 0.85);
}

.home2-blog__card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    color: #ffffff;
}

.home2-blog__card--featured .home2-blog__card-title {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.home2-blog__card-excerpt {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home2-blog__card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffb020;
}

.home2-blog__card-more svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.home2-blog__card:hover .home2-blog__card-more svg {
    transform: translateX(3px);
}

/* Empty */
.home2-blog__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 220px;
    padding: 32px 20px;
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.home2-blog__empty-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 176, 32, 0.08);
    border: 1px solid rgba(255, 176, 32, 0.18);
    color: #ffb020;
}

.home2-blog__empty-ico svg {
    width: 22px;
    height: 22px;
}

/* Pagination */
.home2-blog__pagination {
    margin-top: 28px;
}

.home2-blog__pagination-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.home2-blog__page-item {
    list-style: none;
}

.home2-blog__page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255, 214, 0, 0.25);
    border-radius: 10px;
    background: rgba(18, 18, 28, 0.72);
    color: #f5f5f7;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.home2-blog__page-link:hover {
    border-color: rgba(255, 214, 0, 0.65);
    background: rgba(255, 214, 0, 0.08);
    color: #ffd600;
    text-decoration: none;
}

.home2-blog__page-item.is-active .home2-blog__page-link--current {
    border-color: rgba(255, 176, 32, 0.55);
    background: rgba(255, 176, 32, 0.14);
    color: #ffb020;
}

/* Article detail */
.home2-blog__article-head {
    margin-bottom: 18px;
}

.home2-blog__article-date {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 176, 32, 0.85);
}

.home2-blog__article-title {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.25;
    color: #ffffff;
}

.home2-blog__article-cover {
    margin: 0 0 20px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.home2-blog__article-cover img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}

.home2-blog__article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.home2-blog__article-footer {
    margin-top: 24px;
}

.home2-blog__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.home2-blog__back svg {
    width: 16px;
    height: 16px;
}

.home2-blog__back:hover {
    border-color: rgba(255, 176, 32, 0.35);
    background: rgba(255, 176, 32, 0.08);
    color: #ffb020;
    text-decoration: none;
}

@media (max-width: 991px) {
    .home2-blog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home2-blog__card--featured .home2-blog__card-link {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .home2-blog__card--featured .home2-blog__card-media {
        min-height: 200px;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 767px) {
    .home2-blog__hero-inner {
        padding: 22px 18px 24px;
    }

    .home2-blog__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home2-page__content {
        padding: 22px 18px 24px;
    }
}
