/* ---------- THEME & GLOBAL ---------- */
:root {
    --accent: #0b5ed7;
    --muted: #6c757d;
    --card: #ffffff;
    --bg: #f5f6f7;
    --line: #e6e9eb;
    --text: #111;
    --radius: 6px;
}
.dark-theme {
    --card: #0f1316;
    --bg: #060708;
    --muted: #9aa3ad;
    --text: #e6eef6;
}
html,
body {
    background: var(--bg);
    font-family: "Playfair Display", Georgia, serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
.container {
    max-width: 1180px;
}
/* ---------- PAGE LOADER ---------- */
.page-loader {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(250, 250, 250, 0.97);
    z-index: 9999;
    backdrop-filter: blur(2px);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.loader-logo {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.3px;
}
.spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, 0.08);
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/* ---------- HEADER (sticky) ---------- */
.ht-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1050;
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}
.logo {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.3px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.logo img {
    height: 50px;
    width: 50px;
    display: inline-block;
    border-radius: 4px;
    object-fit: cover;
} /* changed to 50x50 */
.utility-row {
    display: flex;
    gap: 12px;
    align-items: center;
}
.socials i {
    font-size: 18px;
    color: var(--muted);
}
.header-date {
    font-size: 13px;
    color: var(--muted);
    margin-right: 12px;
    white-space: nowrap;
}
.header-item {
    width: 100px;
}
@media (max-width: 767px) {
    .header-date {
        display: none;
    }
    .header-item {
        width: auto;
    }
}
/* ---------- NAV ---------- */
.nav-main {
    background: var(--card);
    border-bottom: 1px solid var(--line);
}
.nav-main .nav-link {
    padding: 10px 18px;
    font-weight: 600;
    color: var(--text);
    font-family: "Playfair Display", Georgia, serif;
    border-bottom: 1px solid var(--line);
}
.nav-main .nav-link {
    border-bottom: 1px solid var(--line);
} /* bottom border for items */
.nav-main .nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}
/* ---------- HAMBURGER (custom visible fallback) ---------- */
.navbar-toggler-custom {
    width: 42px;
    height: 36px;
    border: 0;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 6px;
    border-radius: 6px;
}
.navbar-toggler-custom:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
}
.navbar-toggler-custom .bar {
    display: block;
    height: 3px;
    border-radius: 3px;
    background: var(--text);
    width: 22px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}
.navbar-toggler-custom.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-toggler-custom.open .bar:nth-child(2) {
    opacity: 0;
}
.navbar-toggler-custom.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 992px) {
    .navbar-toggler-custom {
        display: none;
    }
    .nav-main .nav-link {
        border-bottom: 0 !important;
    }
}
/* ---------- PAGE LAYOUT ---------- */
.page-wrap {
    max-width: 1180px;
    margin: 18px auto;
    background: transparent;
    padding: 0 12px;
    outline: none;
}
.left-col {
    width: 260px;
}
.center-col {
    width: 640px;
}
.right-col {
    width: 300px;
}
.card-surface {
    background: var(--card);
    border-radius: 6px;
    border: 1px solid var(--line);
    padding: 12px;
}
/* ---------- LEFT: SECTIONS, FEATURED & WEATHER ---------- */
.latest-head {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}
.category-list a {
    display: block;
    padding: 8px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted);
    font-family: "Playfair Display", Georgia, serif;
}
.category-list a {
    transition: transform 0.16s ease, color 0.16s ease,
        background-color 0.16s ease;
    cursor: pointer;
}
.category-list a:hover,
.category-list a:focus {
    transform: translateX(6px);
    color: darkorange;
    background-color: rgba(11, 94, 215, 0.02);
    outline: none;
}
.category-list a:active {
    transform: translateX(2px);
}
.category-list a:last-child {
    border-bottom: 0;
} /* remove border from last child */

/* category-list border fade in dark theme */
.dark-theme .category-list a {
    border-bottom-color: rgba(255, 255, 255, 0.03);
}
/* small weather card inserted below featured */
.weather-card {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--line);
    background: var(--card);
}
.weather-card .w-temp {
    font-weight: 700;
    font-size: 16px;
}
.weather-card .w-desc {
    font-size: 13px;
    color: var(--muted);
}
/* ---------- CENTER: HERO & CATEGORY SECTIONS ---------- */
.main-feature {
    background: var(--card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    display: block;
    text-decoration: none;
    color: inherit;
}
.main-feature img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.main-feature .feature-title {
    padding: 14px;
}
.main-feature h2 {
    font-size: 24px;
    margin: 0 0 8px;
    font-weight: 700;
}
.main-feature .sub {
    color: var(--muted);
    font-size: 13px;
}
/* ---------- CATEGORY SECTION (vertical list + hover) ---------- */
.category-section {
    margin-bottom: 18px;
}
.category-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin: 8px 0 12px;
}
.category-heading h4 {
    font-weight: 700;
}
.category-heading h5 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
}
.category-heading::before,
.category-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}
.cat-top-card {
    background: var(--card);
    border-radius: 10px;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    padding: 12px;
    display: block;
}
.cat-top-card .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.cat-top-card .kicker {
    font-size: 12px;
    color: darkorange;
    font-weight: 700;
    margin-bottom: 6px;
}
.cat-top-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.cat-top-card .dek {
    color: var(--muted);
    font-size: 14px;
}
.cat-list,
.blog-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cat-list .item,
.blog-list .item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--card);
    transition: transform 0.18s ease, box-shadow 0.18s ease,
        border-color 0.18s ease;
    font-family: "Playfair Display", Georgia, serif;
    will-change: transform;
}
.cat-label {
    color: darkorange !important;
}
.more-from {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--card);
    transition: transform 0.18s ease, box-shadow 0.18s ease,
        border-color 0.18s ease;
    font-family: "Playfair Display", Georgia, serif;
    will-change: transform;    
}
.cat-list .item .txt,
.blog-list .item .txt {
    flex: 1;
}
.more-from h5,
.cat-list .item .txt .title,
.blog-list .item .txt .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    transition: color 0.15s ease, transform 0.18s ease;
}
.cat-list .item .txt .meta,
.blog-list .item .txt .meta {
    font-size: 12px;
    color: var(--muted);
}
.more-from p {
    color: var(--muted);
}
.cat-list .item .thumb,
.blog-list .item .thumb {
    width: 96px;
    height: 64px;
    flex: 0 0 96px;
    border-radius: 6px;
    object-fit: cover;
    transition: transform 0.18s ease;
}
/* Hover/Focus: lift and accent + thumbnail scale */
.cat-list .item:hover,
.cat-list .item:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(11, 94, 215, 0.06);
    border-color: rgba(11, 94, 215, 0.12);
}
.blog-list .item:hover,
.blog-list .item:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(11, 94, 215, 0.06);
    border-color: rgba(11, 94, 215, 0.12);
}
.cat-list .item:hover .title,
.cat-list .item:focus-within .title {
    color: darkorange;
    transform: translateX(2px);
}
.cat-list .item:hover .thumb,
.cat-list .item:focus-within .thumb {
    transform: scale(1.04);
}
.cat-list .item.small-thumb .thumb {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.blog-list .item:hover .title,
.blog-list .item:focus-within .title {
    color: darkorange;
    transform: translateX(2px);
}
.blog-list .item:hover .thumb,
.blog-list .item:focus-within .thumb {
    transform: scale(1.04);
}
.blog-list .item.small-thumb .thumb {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}
/* section footer with view more button */
.section-footer {
    margin-top: 10px;
    text-align: center;
}
.section-footer .btn {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
}
.btn-outline-primary {
    color: darkorange;
    border: 1px solid darkorange;
}
.btn-outline-primary:hover {
    background: darkorange;
    color: #fff;
    border: 1px solid darkorange;
}
/* MORE STORIES grid (below main) - keep same pattern visually */
.more-stories {
    margin: 18px 0;
}
.more-stories .list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.more-stories .list .story {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--card);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.more-stories .list .story .title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
}
.more-stories .list .story .meta {
    font-size: 12px;
    color: var(--muted);
}
.more-stories .list .story:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(11, 94, 215, 0.06);
    border-color: rgba(11, 94, 215, 0.12);
}
.more-stories .list .thumb {
    width: 120px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    flex: 0 0 120px;
}
@media (max-width: 767px) {
    .cat-top-card .title {
        font-size: 16px;
    }
    .cat-top-card img {
        height: auto;
    }
    .cat-list .item,
    .blog-list .item {
        flex-direction: row-reverse;
    }
    .cat-list .item .thumb,
    .blog-list .item .thumb {
        width: 120px;
        height: 80px;
    }
    .left-col,
    .right-col {
        display: none;
    }
    .center-col {
        width: 100%;
    }
    .nav-main .nav {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    } /* left-align nav items on mobile */
    .nav-main .nav-link {
        padding: 12px 9px;
        text-align: left;
        border-bottom: 1px solid var(--line);
    } /* full-width bottom border on mobile */
    .more-stories .list .thumb {
        width: 100px;
        height: 66px;
        flex: 0 0 100px;
    }
    .section-footer .btn {
        max-width: 480px;
    } /* make view more easier to tap */
}
/* ---------- RIGHT: remaining widgets ---------- */
/* Highlights widget styling (normal solid borders, not dotted) */
.highlights .high-item {
    padding: 8px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
} /* solid border */
.highlights .high-item:last-child {
    border-bottom: 0;
}
.highlights a {
    color: var(--text);
    transition: color 0.15s ease, transform 0.12s ease;
}
.highlights a:hover {
    color: darkorange;
    transform: translateX(3px);
}
/* highlight borders fade in dark theme */
.dark-theme .highlights .high-item {
    border-bottom-color: rgba(255, 255, 255, 0.03);
}
.ad-box {
    height: 180px;
    background: linear-gradient(180deg, #f2f2f2, #e9e9e9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.muted {
    color: var(--muted);
}
footer {
    background: var(--card);
    border-top: 1px solid var(--line);
    padding: 36px 0;
    margin-top: 18px;
}
footer .tag-pill {
    display: inline-block;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 0.14rem 0.7rem;
    font-size: 0.78rem;
    margin: 0 0.3rem 0.4rem 0;
    color: var(--muted);
    background: var(--bg);
}
.theme-toggle {
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
}
/* ---------- DARK THEME: make borders faded (not brighter) ---------- */
.dark-theme .card-surface,
.dark-theme .cat-top-card,
.dark-theme .cat-list .item,
.dark-theme .blog-list .item,
.dark-theme .main-feature,
.dark-theme footer,
.dark-theme .more-from,
.dark-theme .nav-main,
.dark-theme .weather-card,
.dark-theme .more-stories .list .story,
.dark-theme .nav-main .nav-link {
    /* include more-stories story borders and nav links */
    border-color: rgba(
        255,
        255,
        255,
        0.04
    ) !important; /* subtle, faded borders on dark bg */
    box-shadow: none !important;
}
.dark-theme footer .tag-pill {
    color: #d1d5db;
    background: var(--bg);
    border-color: rgba(255, 255, 255, 0.04) !important;
}
.dark-theme .category-heading::before,
.dark-theme .category-heading::after {
    background: #414141;
}
.dark-theme .highlights .high-item {
    border-bottom-color: rgba(255, 255, 255, 0.03);
}
.more-from h5,
.more-from p,
.dark-theme .nav-main .nav-link {
    color: var(--text);
}
.dark-theme .page-loader {
    background: rgba(4, 6, 8, 0.9);
}
.dark-theme .ht-header {
    background: #071017;
    color: var(--text);
    border-bottom-color: rgba(255, 255, 255, 0.03);
}
/* ---------- DESKTOP LAYOUT ---------- */
.desktop-layout {
    width: 100%;
}
.center-col-desktop {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Hero Grid - 2 columns */
.hero-grid {
    margin-bottom: 40px;
}
.hero-article-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: -webkit-fill-available;
    transition: transform 0.3s ease;
}
.hero-article-card:hover {
    transform: translateY(-8px);
    text-decoration: none;
}
.hero-article-card .card-surface {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.hero-article-card:hover .card-surface {
    box-shadow: 0 15px 30px rgba(11, 94, 215, 0.1);
    border-color: rgba(11, 94, 215, 0.2);
}
.hero-article-card .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.2s ease;
}
.hero-article-card:hover .title {
    color: darkorange;
}
.hero-article-card .text-muted {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}
/* Category Grid Sections */
.category-grid-section .category-heading {
    margin: 40px 0 25px;
}
.category-grid-section .category-heading h4 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0 20px;
}
.category-grid-section .category-heading::before,
.category-grid-section .category-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}
/* Grid Article Cards */
.grid-article-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
.grid-article-card:hover {
    transform: translateY(-6px);
    text-decoration: none;
}
.grid-article-card .card-surface {
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.grid-article-card:hover .card-surface {
    box-shadow: 0 12px 24px rgba(11, 94, 215, 0.08);
    border-color: rgba(11, 94, 215, 0.15);
}
.grid-article-card .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.2s ease;
    margin-bottom: 8px;
}
.grid-article-card:hover .title {
    color: darkorange;
}
.grid-article-card .text-muted {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
}
/* Section Footer for Desktop */
.category-grid-section .section-footer {
    margin-top: 25px;
    text-align: center;
}
.category-grid-section .section-footer .btn {
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
}
/* Grid Layout Responsive */
@media (max-width: 1199px) {
    .category-grid-section .row {
        --bs-gutter-x: 1.5rem;
    }
}
@media (max-width: 991px) {
    .desktop-layout {
        display: none !important;
    }
    .mobile-layout {
        display: block !important;
    }
}
@media (min-width: 992px) {
    .mobile-layout {
        display: none !important;
    }
    .desktop-layout {
        display: block !important;
    }
    /* Adjust grid for 4 columns on large screens */
    .category-grid-section .row .col-lg-3 {
        width: 25%;
    }
    /* Hero grid spacing */
    .hero-grid .row {
        --bs-gutter-x: 2rem;
    }
}
/* Dark theme adjustments for desktop layout */
.dark-theme .hero-article-card .card-surface,
.dark-theme .grid-article-card .card-surface {
    border-color: rgba(255, 255, 255, 0.04);
}
.dark-theme .hero-article-card:hover .card-surface {
    border-color: rgba(11, 94, 215, 0.3);
    box-shadow: 0 15px 30px rgba(11, 94, 215, 0.15);
}
.dark-theme .grid-article-card:hover .card-surface {
    border-color: rgba(11, 94, 215, 0.3);
    box-shadow: 0 12px 24px rgba(11, 94, 215, 0.1);
}
/* Ensure proper spacing between category sections */
.dark-theme .category-grid-section:not(:last-child) {
    border-bottom-color: rgba(255, 255, 255, 0.04);
}
/* Hide left and right columns in mobile layout */
.mobile-layout .left-col,
.mobile-layout .right-col {
    display: none !important;
}
.mobile-layout .center-col {
    width: 100% !important;
}
/* ---------- CATEGORY PAGE STYLES ---------- */
/* Category Grid Cards */
.category-grid-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
.category-grid-card:hover {
    transform: translateY(-6px);
    text-decoration: none;
}
.category-grid-card .card-surface {
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.category-grid-card:hover .card-surface {
    box-shadow: 0 12px 24px rgba(11, 94, 215, 0.08);
    border-color: rgba(11, 94, 215, 0.15);
}
.category-grid-card .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.2s ease;
    margin-bottom: 8px;
}
.category-grid-card:hover .title {
    color: darkorange;
}
.category-grid-card .text-muted {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
}
/* Pagination */
.pagination .page-link {
    color: var(--text);
    background-color: var(--card);
    border: 1px solid var(--line);
    margin: 0 3px;
    border-radius: 6px;
}
.pagination .page-link:hover {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
}
.pagination .page-item.active .page-link {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}
.pagination .page-item.disabled .page-link {
    color: var(--muted);
    background-color: var(--bg);
}
/* Dark theme adjustments */
.dark-theme .category-grid-card .card-surface {
    border-color: rgba(255, 255, 255, 0.04);
}
.dark-theme .category-grid-card:hover .card-surface {
    border-color: rgba(11, 94, 215, 0.3);
    box-shadow: 0 12px 24px rgba(11, 94, 215, 0.1);
}
.dark-theme .pagination .page-link {
    background-color: var(--card);
    border-color: rgba(255, 255, 255, 0.04);
    color: var(--text);
}
.dark-theme .pagination .page-link:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}
/* Responsive adjustments for category page */
@media (max-width: 991px) {
    .desktop-layout {
        display: none !important;
    }
    .mobile-layout {
        display: block !important;
    }
}
@media (min-width: 992px) {
    .mobile-layout {
        display: none !important;
    }
    .desktop-layout {
        display: block !important;
    }
    /* 4x4 grid on desktop */
    .desktop-layout .row .col-lg-3 {
        width: 25%;
    }
}
/* Ensure category page has full width on desktop */
.container.py-5 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem !important;
}
/* Remove the sidebar styling since we removed it */
aside.col-md-4 {
    display: none !important;
}
/* Make main content full width */
main .row > .col-md-8 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}
/* Blog list adjustments for mobile */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.blog-list .item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--card);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.blog-list .item .txt {
    flex: 1;
}
.blog-list .item .txt .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    transition: color 0.15s ease;
}
.blog-list .item .txt .meta {
    font-size: 12px;
    color: var(--muted);
}
.blog-list .item .thumb {
    width: 96px;
    height: 64px;
    flex: 0 0 96px;
    border-radius: 6px;
    object-fit: cover;
    transition: transform 0.18s ease;
}
.blog-list .item:hover,
.blog-list .item:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(11, 94, 215, 0.06);
    border-color: rgba(11, 94, 215, 0.12);
}
.blog-list .item:hover .title,
.blog-list .item:focus-within .title {
    color: darkorange;
}
.blog-list .item:hover .thumb,
.blog-list .item:focus-within .thumb {
    transform: scale(1.04);
}
.card-surface .title,
.item .title,
.story .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}