/* =============================================
   2-Column Equal-Height Article Card Grid
   ============================================= */

.article-card-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 1em;
    margin-left: -10px;
    margin-right: -10px;
}

.article-card-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

/* =============================================
   Article Summary Card
   ============================================= */

.article-summary-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    -webkit-transition: box-shadow 0.2s ease, -webkit-transform 0.2s ease;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.article-summary-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* ── Card Header: Article Type ── */
.asc-header {
    background: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
    padding: 7px 14px;
}

.asc-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #777;
}

/* ── Card Body ── */
.asc-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 14px 16px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.asc-cover {
    display: block;
    margin-bottom: 10px;
}

.asc-cover img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

.asc-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 8px 0;
    color: #222;
}

.asc-title a {
    color: #222;
    text-decoration: none;
}

.asc-title a:hover {
    color: #337ab7;
}

.asc-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin-top: 3px;
}

.asc-authors {
    font-size: 12px;
    color: #555;
    margin: 0 0 4px 0;
}

.asc-meta-label {
    color: #999;
    font-size: 11px;
}

.asc-pages {
    font-size: 12px;
    color: #666;
    margin: 0 0 3px 0;
}

.asc-doi {
    font-size: 12px;
    color: #666;
    margin: 0 0 3px 0;
    word-break: break-all;
}

.asc-doi a {
    color: #337ab7;
    text-decoration: none;
}

.asc-doi a:hover {
    text-decoration: underline;
}

/* ── Card Footer ── */
.asc-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px 16px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    margin-top: auto;
}

/* Open Access Badge */
.asc-oa-badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #f68212;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.asc-oa-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* View Article Link */
.asc-view-link {
    font-size: 12px;
    font-weight: 600;
    color: #337ab7;
    text-decoration: none;
    padding: 3px 8px;
    border: 1px solid #337ab7;
    border-radius: 3px;
    -webkit-transition: background 0.15s, color 0.15s;
    transition: background 0.15s, color 0.15s;
}

.asc-view-link:hover {
    background: #337ab7;
    color: #fff;
    text-decoration: none;
}

/* =============================================
   Global Overrides
   ============================================= */

h2 {
    font-size: 22px !important;
}

/* =============================================
   Issue Galleys Links
   ============================================= */

.issue-galleys-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.issue-galleys-links .galley-link.btn {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #337ab7 !important;
    background: transparent !important;
    border: 1px solid #337ab7 !important;
    border-radius: 3px !important;
    padding: 4px 10px !important;
    -webkit-transition: background 0.15s, color 0.15s;
    transition: background 0.15s, color 0.15s;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.issue-galleys-links .galley-link.btn:hover,
.issue-galleys-links .galley-link.btn:focus,
.issue-galleys-links .galley-link.btn:active {
    background: #337ab7 !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* =============================================
   Current Issue Visual Enhancements
   ============================================= */

/* Issue Cover Modernization */
.issue-toc .thumbnail {
    border: 1px solid #e8e8e8 !important;
    border-radius: 6px !important;
    padding: 6px !important;
    background: #fff;
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.issue-toc .thumbnail:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.issue-toc .thumbnail img {
    border-radius: 4px;
}

/* Volume/Issue Subtitle Hiearchy Override */
.current_issue_title.lead {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    letter-spacing: 0.02em;
    margin-top: 4px;
    margin-bottom: 24px;
}