﻿/**
 * blog.css — Aplausos Festival
 * Blog listing page styles (light public theme)
 */

/* No-scrollbar utility for category bar */
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* Search input focus override */
input[type="search"]:focus {
    outline: none;
    border-color: #681919 !important;
    box-shadow: 0 0 0 3px rgba(104, 25, 25, 0.12);
}

/* Featured card hover */
.blog-featured-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-featured-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

/* Grid card hover */
.blog-card {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}

/* Line clamp utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}