/* =============================================
   EENADU STYLE PORTAL — FULL WIDTH LAYOUT
   ============================================= */

/* Font Face Definition */
@font-face {
    font-family: 'Priyanka';
    src: url('../fonts/PRIYAANK.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --blue-dark: #0b3d91;
    --blue-nav: #163d89;
    --yellow: #ffd700;
    --yellow-light: #fff4b0;
    --red: #d32f2f;
    --bg: #eaeaea;
    --white: #ffffff;
    --text: #333;
    --text-muted: #666;
    --border: #ddd;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans Telugu', 'Roboto', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== TICKER BAR ===== */
.ticker-bar {
    background: var(--blue-dark);
    color: #fff;
    font-size: 0.78rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 20px;
}

.ticker-label {
    background: var(--red);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.7rem;
    margin-right: 10px;
}

.ticker-text {
    color: var(--yellow);
}

.ticker-links a {
    color: #ccc;
    margin-left: 12px;
    font-size: 0.75rem;
}

.ticker-links a:hover {
    color: var(--yellow);
}

/* ===== SITE HEADER (Yellow) ===== */
.site-header {
    background: var(--yellow);
    border-bottom: 3px solid #e6c200;
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-block {
    flex-shrink: 0;
}

.logo-top {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.logo-sub {
    font-size: 0.8rem;
    color: #c00;
    font-weight: 700;
}

.logo-main {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--blue-dark);
    line-height: 1;
}

.logo-dot {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
}

.header-date {
    font-size: 0.85rem;
    color: #444;
    margin-top: 2px;
    display: block;
}

.header-ad-slot {
    flex: 1;
    text-align: center;
    padding: 0 30px;
}

.ad-placeholder-lg {
    background: #fff8dc;
    border: 2px dashed #ccc;
    padding: 25px 40px;
    color: #999;
    font-size: 0.9rem;
    border-radius: 4px;
}

.header-right-icons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.hdr-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: #333;
    cursor: pointer;
}

.hdr-icon i {
    font-size: 1.4rem;
    margin-bottom: 3px;
    color: #555;
}

.hdr-icon:hover {
    color: var(--blue-dark);
}

/* ===== MAIN NAVIGATION ===== */
.main-nav {
    background: var(--blue-nav);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.nav-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.nav-list li {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-list li:last-child {
    border-right: none;
}

.nav-list a {
    display: block;
    padding: 11px 16px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s;
}

.nav-list a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-home {
    padding: 11px 18px !important;
    font-size: 1.1rem !important;
}

.nav-highlight {
    background: rgba(255, 215, 0, 0.15) !important;
    color: var(--yellow) !important;
    font-weight: 600 !important;
}

/* ===== MAIN CONTENT AREA ===== */
.site-main {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    min-height: 60vh;
}

/* ===== BREAKING NEWS TICKER (Sakshi-style) ===== */
.breaking-bar {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.breaking-label {
    background: #d32f2f;
    color: #fff;
    font-weight: 800;
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.breaking-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.breaking-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollTicker 70s linear infinite;
    padding-left: 100%;
}

.breaking-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.breaking-item {
    color: #c00;
    font-size: 0.88rem;
    font-weight: 500;
}

.breaking-dot {
    color: #c00;
    font-size: 0.6rem;
    margin: 0 15px;
}

/* ===== CATEGORY SNIPPETS BAR ===== */
.cat-snippets {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    background: #fff;
    border-bottom: 2px solid #eee;
}

.cat-box {
    padding: 12px 18px;
    border-right: 1px solid #eee;
}

.cat-box:last-child {
    border-right: none;
}

.cat-box-title {
    color: #0b3d91;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    border-bottom: 2px solid #0b3d91;
    padding-bottom: 4px;
    display: inline-block;
}

.cat-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-box li {
    padding: 4px 0;
    font-size: 0.82rem;
    line-height: 1.4;
    border-bottom: 1px dashed #eee;
}

.cat-box li:last-child {
    border-bottom: none;
}

.cat-box a {
    color: #333;
}

.cat-box a:hover {
    color: #0b3d91;
}

/* ===== WEB STORIES / PHOTO STORIES ===== */
.stories-section {
    background: #fff;
    padding: 15px 20px;
    margin-top: 3px;
}

.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stories-header h3 {
    color: #0b3d91;
    font-size: 1.05rem;
    margin: 0;
    border-bottom: 2px solid #0b3d91;
    padding-bottom: 4px;
    display: inline-block;
}

.stories-header h3 i {
    margin-right: 6px;
}

.stories-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.stories-track::-webkit-scrollbar {
    height: 5px;
}

.stories-track::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.story-card {
    flex-shrink: 0;
    width: 145px;
    height: 220px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}

.story-card:hover {
    transform: scale(1.04);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    padding: 40px 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.story-text {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.story-date {
    color: #ffd700;
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 4px;
}

/* ===== HIGHLIGHTS SECTION (ప్రధానాంశాలు) ===== */
.highlights-section {
    background: #fff;
    padding: 20px;
    margin-top: 3px;
}

.highlights-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    border-bottom: 2px solid #0b3d91;
    padding-bottom: 10px;
}

.highlights-header h2 {
    color: #0b3d91;
    font-size: 1.2rem;
    margin: 0;
}

.highlights-header h2 i {
    margin-right: 8px;
}

.tab-bar {
    display: flex;
    gap: 5px;
}

.tab-btn {
    padding: 6px 16px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    color: #555;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
}

.tab-btn.active {
    background: #0b3d91;
    color: #fff;
    border-color: #0b3d91;
}

.tab-btn:hover:not(.active) {
    background: #e8e8e8;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 25px;
}

/* Main Featured Story */
.highlight-img {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 12px;
}

.highlight-img img {
    width: 100%;
    display: block;
    border-radius: 5px;
}

.highlight-main h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    line-height: 1.5;
}

.highlight-main h3 a {
    color: #222;
}

.highlight-main h3 a:hover {
    color: #0b3d91;
}

.highlight-main p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Side Headlines */
.highlight-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-news-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 1px dashed #ddd;
}

.side-news-item img {
    width: 110px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.side-news-item a {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    display: block;
}

.side-news-item a:hover {
    color: #0b3d91;
}

.news-time {
    font-size: 0.72rem;
    color: #aaa;
    margin-top: 4px;
    display: block;
}

.more-link {
    color: #0b3d91;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.more-link:hover {
    color: #d32f2f;
}

/* ===== VIDEO GALLERY ===== */
.video-section {
    background: #fff;
    padding: 20px;
    margin-top: 3px;
}

.section-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    border-bottom: 2px solid #0b3d91;
    padding-bottom: 10px;
}

.section-title-bar h2 {
    color: #0b3d91;
    font-size: 1.15rem;
    margin: 0;
}

.section-title-bar h2 i {
    margin-right: 8px;
    color: #d32f2f;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.video-thumb {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    height: 140px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(200, 0, 0, 0.85);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.2s;
}

.video-thumb:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.live-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #c00;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 700;
}

.live-tag i {
    margin-right: 4px;
}

.video-card h4 {
    margin: 8px 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.video-card h4:hover {
    color: #0b3d91;
}

/* ===== BOTTOM SECTION: Rashi + Most Read ===== */
.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 3px;
}

/* Rashifalam */
.rashi-box {
    background: #fff;
    padding: 20px;
}

.rashi-title {
    color: #0b3d91;
    font-size: 1.1rem;
    margin: 0 0 15px;
    border-bottom: 2px solid #0b3d91;
    padding-bottom: 8px;
}

.rashi-title i {
    color: #ff6f00;
    margin-right: 6px;
}

.rashi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.rashi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 5px;
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.rashi-item:hover {
    background: #e8eaf6;
    border-color: #0b3d91;
}

.rashi-item span {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

/* Most Read */
.most-read-box {
    background: #fff;
    padding: 20px;
}

.most-read-title {
    color: #d32f2f;
    font-size: 1.1rem;
    margin: 0 0 15px;
    border-bottom: 2px solid #d32f2f;
    padding-bottom: 8px;
}

.most-read-title i {
    margin-right: 6px;
}

.most-read-list {
    padding-left: 22px;
    margin: 0;
}

.most-read-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 0.9rem;
    line-height: 1.5;
}

.most-read-list li::marker {
    color: #d32f2f;
    font-weight: 700;
}

.most-read-list a {
    color: #333;
}

.most-read-list a:hover {
    color: #0b3d91;
}

/* ===== RESPONSIVE FOR EENADU SECTIONS ===== */
@media (max-width: 768px) {
    .cat-snippets {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlights-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .video-grid {
        grid-template-columns: 1fr 1fr;
    }

    .video-main .video-thumb {
        height: 180px;
    }

    .bottom-section {
        grid-template-columns: 1fr;
    }

    .rashi-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
}

/* ===== CONVERTER PAGE STYLES ===== */
.main-wrapper {
    width: 100%;
    padding: 20px;
}

.converter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 550px;
}

.card-header {
    padding: 1rem;
    background: #fff;
}

.card-header label {
    font-size: 0.95rem;
    color: #555;
    font-weight: 600;
}

.card-body {
    flex: 1;
    padding: 0 1rem;
}

textarea {
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 1rem;
    resize: none;
    font-size: 1.1rem;
    outline: none;
    color: #333;
    background: #fafafa;
}

textarea:focus {
    background: #fff;
    border-color: #ddd;
}

#anuOutput {
    font-family: 'Priyanka', 'AnuScript', sans-serif;
    font-size: 1.6rem;
}

.card-footer {
    padding: 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-primary {
    background-color: #2962ff;
    color: white;
    border: none;
    padding: 8px 24px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1e4fdb;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid transparent;
    padding: 8px 16px;
    font-weight: 500;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.mapping-select {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
}

select {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 600;
    color: #333;
}

.font-preview-text {
    font-size: 0.8rem;
    color: #999;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .home-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-col-side {
        grid-column: 1 / -1;
        border-left: none;
        padding-left: 0;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .home-grid {
        grid-template-columns: 1fr;
    }

    .converter-grid {
        grid-template-columns: 1fr;
    }

    .thumb-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-ad-slot {
        display: none;
    }

    .nav-list {
        overflow-x: auto;
    }

    .stats-banner {
        gap: 20px;
    }

    .stat-num {
        font-size: 1.8rem;
    }
}

/* ===== CUSTOM NOTIFICATION PROMPT ===== */
.custom-notification-prompt {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: 90%;
    border-left: 4px solid #0056b3;
}

.notification-prompt-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notification-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.notification-text strong {
    display: block;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 4px;
}

.notification-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.notification-prompt-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* ===== FLOATING VIDEO PLAYER ===== */
.floating-video-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.floating-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.close-floating-video {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.close-floating-video:hover {
    background: #c82333;
}

@media (max-width: 576px) {
    .floating-video-player {
        width: 280px;
        bottom: 15px;
        right: 15px;
    }
}

/* ===== NEW CUSTOM HORIZONTAL MENU ===== */
.navigation.w-100 {
    flex-wrap: nowrap;
    /* Options in single line */
}

@media (min-width: 992px) {
    .navigation.w-100 .nav-link {
        padding-right: 8px !important;
        padding-left: 8px !important;
        font-size: 0.9rem !important;
    }
}

.navigation .nav-item {
    white-space: nowrap;
}

.custom-dropdown-menu {
    background-color: #f8c21c;
    /* Yellow background similar to screenshot */
    border: none;
    border-radius: 4px;
    padding: 8px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    min-width: 320px;
    column-count: 2;
    column-gap: 0;
}

.custom-dropdown-menu li {
    break-inside: avoid;
    page-break-inside: avoid;
}

.custom-dropdown-menu .dropdown-item {
    color: #333;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-dropdown-menu li:last-child .dropdown-item,
.custom-dropdown-menu li:nth-last-child(2) .dropdown-item {
    border-bottom: none;
}

.custom-dropdown-menu .dropdown-item:hover,
.custom-dropdown-menu .dropdown-item:focus {
    background-color: #e0ac10;
    /* Darker yellow on hover */
    color: #000;
}

/* ===== NEW FOUR-COLUMN CATEGORY SECTION ===== */
.four-column-section {
    background-color: #f8f9fa;
    /* Light gray background to separate section */
}

.category-column {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
}

.category-header {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    padding: 12px;
    border-bottom: 3px solid #f0f0f0;
    text-transform: capitalize;
}

/* Featured Top Item */
.category-featured {
    position: relative;
    display: block;
    overflow: hidden;
    height: 180px;
    /* Adjust height based on screenshot */
    margin-bottom: 1px;
}

.category-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-featured:hover img {
    transform: scale(1.05);
}

.category-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 12px 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
}

.category-featured-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    color: #ffd200;
    /* Yellow text as in screenshot */
}

/* List Items Below */
.category-list {
    display: flex;
    flex-direction: column;
}

.category-list-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    align-items: flex-start;
}

.category-list-item:last-child {
    border-bottom: none;
}

.cat-list-thumb {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    background: #eee;
}

.cat-list-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cat-list-title {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    color: #0056b3;
    /* Blue links */
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-list-item:hover .cat-list-title {
    text-decoration: underline;
}

.cat-list-time {
    font-size: 0.72rem;
    color: #888;
}

.category-view-more {
    display: block;
    text-align: left;
    padding: 10px 12px;
    font-size: 0.85rem;
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
}

.category-view-more:hover {
    text-decoration: underline;
}