/* ══════════════════
   BLOG PAGE — blog.css
══════════════════ */

:root {
    --gt-theme:   #29ABE2;
    --gt-theme-2: #29ABE2;
    --gt-theme-3: #29ABE2;
}

body { background: #060606; color: #fff; overflow-x: hidden; }

/* ══════════════════
   HERO
══════════════════ */
.bl-hero {
    background: #080808;
    padding: 140px 0 72px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}
.bl-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}
.bl-hero::after {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #29ABE2 0%, rgba(41,171,226,0.15) 60%, transparent 100%);
}
.bl-hero__inner {
    position: relative; z-index: 1;
}
.bl-hero__breadcrumb {
    display: flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(255,255,255,0.3);
    margin-bottom: 24px;
}
.bl-hero__breadcrumb a {
    color: rgba(255,255,255,0.3); text-decoration: none;
    transition: color 0.2s;
}
.bl-hero__breadcrumb a:hover { color: #29ABE2; }
.bl-hero__breadcrumb-sep {
    font-size: 9px; color: rgba(255,255,255,0.15);
}
.bl-hero__breadcrumb-cur { color: #29ABE2; }
.bl-hero__heading {
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900; letter-spacing: -0.045em;
    line-height: 0.95; color: #fff;
    text-transform: uppercase; margin: 0;
}
.bl-hero__heading span {
    display: block;
    -webkit-text-stroke: 1px rgba(255,255,255,0.15);
    color: transparent;
}
.bl-hero__meta {
    display: flex; align-items: center; gap: 24px;
    margin-top: 32px;
}
.bl-hero__meta-item {
    font-size: 11px; letter-spacing: 0.16em;
    text-transform: uppercase; color: rgba(255,255,255,0.28);
}
.bl-hero__meta-item strong {
    display: block; font-size: 22px; font-weight: 800;
    color: #fff; letter-spacing: -0.03em; line-height: 1;
    margin-bottom: 4px;
}
.bl-hero__meta-sep {
    width: 1px; height: 36px;
    background: rgba(255,255,255,0.08);
}

/* ══════════════════
   CONTENT LAYOUT
══════════════════ */
.bl-body {
    padding: 72px 0 100px;
    background: #060606;
}

/* ── Blog cards (left) ── */
.bl-card {
    display: flex; gap: 0;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 2px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.bl-card::before {
    content: "";
    position: absolute; top: 0; left: 0;
    width: 2px; height: 0;
    background: #29ABE2;
    transition: height 0.4s ease;
}
.bl-card:hover { background: #111; border-color: rgba(41,171,226,0.12); text-decoration: none; }
.bl-card:hover::before { height: 100%; }

.bl-card__img {
    width: 220px; flex-shrink: 0;
    overflow: hidden; position: relative;
}
.bl-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.75);
    transition: transform 0.6s ease, filter 0.4s;
}
.bl-card:hover .bl-card__img img {
    transform: scale(1.06);
    filter: brightness(0.85) saturate(0.9);
}
.bl-card__cat {
    position: absolute; top: 14px; left: 14px;
    font-size: 8px; letter-spacing: 0.22em;
    text-transform: uppercase;
    background: rgba(41,171,226,0.9); color: #000;
    font-weight: 800; padding: 3px 10px; border-radius: 100px;
}
.bl-card__body {
    padding: 28px 32px;
    display: flex; flex-direction: column;
    justify-content: center; flex: 1; min-width: 0;
}
.bl-card__meta {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 12px;
}
.bl-card__date {
    font-size: 10px; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.22);
}
.bl-card__read {
    font-size: 10px; color: rgba(41,171,226,0.55);
    letter-spacing: 0.08em;
}
.bl-card__title {
    font-size: 18px; font-weight: 700;
    color: #fff; letter-spacing: -0.015em;
    line-height: 1.35; margin: 0 0 12px;
    transition: color 0.25s;
}
.bl-card:hover .bl-card__title { color: #29ABE2; }
.bl-card__excerpt {
    font-size: 13px; line-height: 1.75;
    color: rgba(255,255,255,0.3);
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bl-card__readmore {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    transition: color 0.25s, gap 0.25s;
}
.bl-card:hover .bl-card__readmore { color: #29ABE2; gap: 12px; }
.bl-card__readmore i { font-size: 9px; }

/* Pagination */
.bl-pagination {
    display: flex; gap: 4px;
    margin-top: 40px;
}
.bl-pagination__item {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.3);
    font-size: 12px; font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}
.bl-pagination__item--active,
.bl-pagination__item:hover {
    background: #29ABE2; border-color: #29ABE2;
    color: #000; text-decoration: none;
}

/* ── Sidebar (right) ── */
.bl-sidebar { padding-left: 12px; }

.bl-widget {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 32px 28px;
    margin-bottom: 2px;
}
.bl-widget__title {
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: #fff; margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 10px;
}
.bl-widget__title::before {
    content: ""; display: block;
    width: 16px; height: 2px; background: #29ABE2; flex-shrink: 0;
}

/* Category list */
.bl-cats { list-style: none; margin: 0; padding: 0; }
.bl-cats li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bl-cats li:last-child { border-bottom: none; }
.bl-cats a {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 13px; color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.bl-cats a:hover { color: #29ABE2; padding-left: 8px; }
.bl-cats__count {
    font-size: 10px; font-family: 'Courier New', monospace;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.04);
    padding: 2px 8px; border-radius: 100px;
}
.bl-cats a:hover .bl-cats__count { color: #29ABE2; background: rgba(41,171,226,0.08); }

/* Recent posts */
.bl-recent { list-style: none; margin: 0; padding: 0; }
.bl-recent li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bl-recent li:last-child { border-bottom: none; padding-bottom: 0; }
.bl-recent a {
    font-size: 13px; color: rgba(255,255,255,0.5);
    text-decoration: none; line-height: 1.5;
    display: block; transition: color 0.2s;
}
.bl-recent a:hover { color: #29ABE2; }
.bl-recent__date {
    display: block;
    font-size: 9px; letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2); margin-top: 4px;
}

/* Tags */
.bl-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.bl-tag {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 5px 12px; border-radius: 2px;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.bl-tag:hover {
    color: #29ABE2; border-color: rgba(41,171,226,0.3);
    background: rgba(41,171,226,0.05);
}

/* Subscribe widget */
.bl-subscribe__text {
    font-size: 13px; line-height: 1.7;
    color: rgba(255,255,255,0.3); margin: 0 0 20px;
}
.bl-subscribe__input {
    width: 100%; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff; font-size: 13px;
    padding: 12px 16px; outline: none;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}
.bl-subscribe__input::placeholder { color: rgba(255,255,255,0.2); }
.bl-subscribe__input:focus { border-color: rgba(41,171,226,0.4); }
.bl-subscribe__btn {
    width: 100%; background: #29ABE2;
    border: none; color: #000;
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 13px 20px; cursor: pointer;
    transition: background 0.25s;
}
.bl-subscribe__btn:hover { background: #1a8fc7; }

/* ══════════════════
   RESPONSIVE
══════════════════ */
@media (max-width: 1199px) {
    .bl-hero { padding: 130px 0 60px; }
    .bl-card__img { width: 190px; }
    .bl-card__title { font-size: 16px; }
    .bl-sidebar { padding-left: 6px; }
}
@media (max-width: 991px) {
    .bl-hero { padding: 110px 0 52px; }
    .bl-sidebar { padding-left: 0; margin-top: 48px; }
    .bl-card__img { width: 170px; }
}
@media (max-width: 767px) {
    .bl-hero { padding: 96px 0 44px; }
    .bl-card { flex-direction: column; }
    .bl-card__img { width: 100%; height: 200px; }
    .bl-card__body { padding: 22px 22px 26px; }
    .bl-card__excerpt { display: none; }
    .bl-body { padding: 48px 0 72px; }
}
@media (max-width: 575px) {
    .bl-hero { padding: 88px 0 36px; }
    .bl-hero__meta { gap: 16px; }
    .bl-card__img { height: 180px; }
    .bl-card__body { padding: 18px 18px 22px; }
    .bl-card__title { font-size: 15px; }
}
