/* ═══════════════════════════════════════
   Shared Monograph Journal Styles
   Used across index, about, aim-scope,
   submission pages
═══════════════════════════════════════ */

/* Hero bar */
.jnl-hero-bar {
    background: linear-gradient(135deg, #e27d11 0%, #c44536 100%);
    padding: 30px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
	margin-left: 15%;
  margin-right: 15%;
}
.jnl-hero-bar h1 {
    color: #fff !important;
    background: none !important;
    font-size: 1.8rem !important;
    margin: 0 0 6px !important;
    border: none !important;
    padding: 0 !important;
}
.jnl-hero-bar p {
    color: rgba(255,255,255,.85) !important;
    margin: 0 !important;
	text-align: center;
}
.jnl-hero-bar .jnl-issn-badge {
    display: inline-block;
    margin-top: 10px;
    background: rgba(255,255,255,.15);
    padding: 4px 14px;
    border-radius: 20px;
}

/* Nav row */
.jnl-nav-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    margin-bottom: 20px;
    overflow: hidden;
    border-bottom: 2px solid #eee;
}
.jnl-nav-row a {
    padding: 12px 18px;
    font-weight: 600;
    color: #555 !important;
    text-decoration: none !important;
    border-bottom: 3px solid transparent;
    transition: all .2s;
}
.jnl-nav-row a:hover, .jnl-nav-row a.active {
    color: #c44536 !important;
    border-bottom-color: #c44536;
    background: #fdf8f4;
}

/* Stats row */
.jnl-stats-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.jnl-stat-box {
    flex: 1;
    min-width: 120px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    padding: 16px;
    text-align: center;
    border-top: 3px solid #c44536;
}
.jnl-stat-box strong {
    display: block;
    font-size: 1.6rem;
    color: #c44536;
}
.jnl-stat-box span {
    color: #666;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Article list items */
.jnl-article-item {
    display: flex;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background .15s;
    text-decoration: none !important;
    color: inherit;
}
.jnl-article-item:last-child { border-bottom: none; }
.jnl-article-item:hover { background: #fdf8f4; }
.jnl-article-thumb {
    width: 80px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
}
.jnl-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.jnl-article-info { flex: 1; }
.jnl-article-info h3 {
    margin: 0 0 6px !important;
    font-weight: 700 !important;
    color: #222 !important;
    line-height: 1.4 !important;
}
.jnl-article-info p {
    margin: 0 !important;
    color: #666 !important;
    line-height: 1.5 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.jnl-article-info .jnl-meta {
    color: #999;
    margin-top: 6px;
}

/* Breadcrumb */
.jnl-breadcrumb {
    padding: 8px 20px;
    margin: 0;
    color: #888;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}
.jnl-breadcrumb .container {
    background: transparent !important;
}
.jnl-breadcrumb a {
    color: #c44536 !important;
    text-decoration: none !important;
    font-weight: 600;
}
.jnl-breadcrumb a:hover { text-decoration: underline !important; }
.jnl-breadcrumb span { margin: 0 6px; color: #ccc; }

/* ═══════════════════════════════════════
   .sb-widget styles (from managementboard)
   Needed on all monograph pages
═══════════════════════════════════════ */
.sb-widget {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    margin-bottom: 20px;
    overflow: hidden;
}

.sb-widget-header {
    background: linear-gradient(135deg, #b5341a 0%, #d9522e 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb-widget-icon { font-size: 13px; opacity: 0.9; }

.sb-widget-body { padding: 16px; }

/* Article list item styling */
.jnl-article-item {
    display: flex;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background .15s;
    text-decoration: none !important;
    color: inherit !important;
}
.jnl-article-item:last-child { border-bottom: none; }
.jnl-article-item:hover { background: #fdf8f4; }

.jnl-article-thumb {
    width: 80px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
    border: 1px solid #ddd;
}
.jnl-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jnl-article-info { flex: 1; }
.jnl-article-info h3 {
    margin: 0 0 6px !important;
    font-weight: 700 !important;
    color: #222 !important;
    line-height: 1.4 !important;
    font-size: 1rem !important;
}
.jnl-article-info p {
    margin: 0 !important;
    color: #666 !important;
    line-height: 1.5 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.jnl-article-info .jnl-meta {
    color: #999;
    margin-top: 8px;
    font-size: 13px;
}
