/* ── Theme Builder Widgets Shared Styles ── */

.yasmalia-service-empty {
    padding: 24px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    text-align: center;
}

/* Post Title */
.yasmalia-tb-post-title a { color: inherit; text-decoration: none; }
.yasmalia-tb-post-title a:hover { opacity: .8; }

/* Post Content */
.yasmalia-tb-post-content { line-height: 1.75; }

/* Post Excerpt */
.yasmalia-tb-post-excerpt p { margin: 0; line-height: 1.6; }

/* Author Box */
.yasmalia-tb-author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
}
.yasmalia-tb-author-avatar img { border-radius: 50%; }
.yasmalia-tb-author-name { margin: 0 0 6px; font-size: 18px; font-weight: 700; }
.yasmalia-tb-author-bio { margin: 0 0 10px; color: #6b7280; font-size: 14px; line-height: 1.5; }
.yasmalia-tb-author-link { color: #6366f1; font-size: 14px; font-weight: 600; text-decoration: none; }
.yasmalia-tb-author-link:hover { text-decoration: underline; }

/* Post Navigation */
.yasmalia-tb-post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.yasmalia-tb-nav-prev, .yasmalia-tb-nav-next { flex: 1; }
.yasmalia-tb-nav-next { text-align: right; }
.yasmalia-tb-nav-prev a, .yasmalia-tb-nav-next a { text-decoration: none; color: inherit; display: block; }
.yasmalia-tb-nav-arrow { font-size: 20px; opacity: .5; }
.yasmalia-tb-nav-label { font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: #9ca3af; margin: 4px 0; }
.yasmalia-tb-nav-title { font-size: 15px; font-weight: 600; color: #111827; }
.yasmalia-tb-nav-prev a:hover .yasmalia-tb-nav-title,
.yasmalia-tb-nav-next a:hover .yasmalia-tb-nav-title { color: #6366f1; }

/* Post Info */
.yasmalia-tb-post-info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 14px;
    color: #6b7280;
}
.yasmalia-tb-info-sep { opacity: .4; }
.yasmalia-tb-info-cats a { color: #6366f1; text-decoration: none; }
.yasmalia-tb-info-cats a:hover { text-decoration: underline; }

/* Site Logo */
.yasmalia-tb-site-logo img { display: inline-block; height: auto; }
.yasmalia-tb-site-logo a { text-decoration: none; color: inherit; }

/* Site Title */
.yasmalia-tb-site-title a { color: inherit; text-decoration: none; }
.yasmalia-tb-site-tagline { margin: 4px 0 0; color: #6b7280; font-size: 14px; }

/* Archive Title */
.yasmalia-tb-archive-title { margin-bottom: 24px; }
.yasmalia-tb-archive-desc { color: #6b7280; font-size: 15px; margin-top: 8px; }

/* Archive Posts Grid */
.yasmalia-tb-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.yasmalia-tb-archive-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f3f4f6;
    transition: box-shadow .2s;
}
.yasmalia-tb-archive-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.yasmalia-tb-archive-thumb { display: block; overflow: hidden; }
.yasmalia-tb-archive-thumb img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .3s; }
.yasmalia-tb-archive-card:hover .yasmalia-tb-archive-thumb img { transform: scale(1.04); }
.yasmalia-tb-archive-content { padding: 16px; }
.yasmalia-tb-archive-meta { font-size: 12px; color: #9ca3af; margin-bottom: 6px; }
.yasmalia-tb-archive-card .yasmalia-tb-archive-title { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.yasmalia-tb-archive-card .yasmalia-tb-archive-title a { color: #111827; text-decoration: none; }
.yasmalia-tb-archive-card .yasmalia-tb-archive-title a:hover { color: #6366f1; }
.yasmalia-tb-archive-excerpt { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.5; }

/* Pagination */
.yasmalia-tb-archive-pagination { margin-top: 32px; text-align: center; }
.yasmalia-tb-archive-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.yasmalia-tb-archive-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    background: #f3f4f6; color: #374151; font-size: 14px; font-weight: 500;
    text-decoration: none; transition: all .2s;
}
.yasmalia-tb-archive-pagination .page-numbers.current,
.yasmalia-tb-archive-pagination .page-numbers:hover {
    background: #6366f1; color: #fff;
}

/* Canvas Template */
.yasmalia-canvas-template { margin: 0; }
.yasmalia-theme-content { min-height: 50vh; }

@media (max-width: 767px) {
    .yasmalia-tb-archive-grid { grid-template-columns: 1fr; }
    .yasmalia-tb-author-box { flex-direction: column; text-align: center; align-items: center; }
    .yasmalia-tb-post-navigation { flex-direction: column; }
    .yasmalia-tb-nav-next { text-align: left; }
}
