/* Webzine Detail */
.webzine-content { font-size: 1.05rem; line-height: 1.8; }

/* Webzine List */
.webzine-featured { overflow: hidden; border-radius: 10px; }
.webzine-featured-img { width: 100%; height: 280px; object-fit: cover; }
.webzine-featured-placeholder {
    width: 100%; height: 280px;
    display: flex; align-items: center; justify-content: center;
    background: #e9ecef;
}
.webzine-card { transition: box-shadow .2s, transform .2s; border-radius: 10px; overflow: hidden; }
.webzine-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); transform: translateY(-3px); }
.webzine-thumb { width: 100%; height: 180px; object-fit: cover; }
.webzine-thumb-placeholder {
    width: 100%; height: 180px;
    display: flex; align-items: center; justify-content: center;
    background: #e9ecef;
}
.webzine-title {
    font-size: 1rem; font-weight: 600; color: #212529;
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.webzine-subtitle {
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
