
/* ===========================
   SIRG Separate Journal Blocks
   =========================== */

.sirg-block {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 18px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover animation */
.sirg-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}

/* Header */
.sirg-header {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.85;
}

/* Title */
.sirg-block h3 {
    font-size: 17px;
    margin: 8px 0 12px;
}

.sirg-block h3 a {
    text-decoration: none;
    color: #111827;
}

.sirg-block h3 a:hover {
    color: #0b5ed7;
}

/* Button */
.sirg-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #0b5ed7;
    color: #fff !important;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
}

.sirg-btn:hover {
    background: #084298;
}

/* ===========================
   Journal Colors (Left Accent)
   =========================== */


/* CDIS - Blue */
.sirg-block.cdis {
    border-left: 6px solid #2563eb;
}
.sirg-block.cdis .sirg-header {
    color: #2563eb;
}

/* JSAA - Green */
.sirg-block.jsaa {
    border-left: 6px solid #16a34a;
}
.sirg-block.jsaa .sirg-header {
    color: #16a34a;
}

/* AMEJ - Burgundy (Navy Wine tone) */
.sirg-block.amej {
    border-left: 6px solid #7f1d1d;
}
.sirg-block.amej .sirg-header {
    color: #7f1d1d;
}

/* ESIT - Purple */
.sirg-block.esit {
    border-left: 6px solid #6d28d9;
}
.sirg-block.esit .sirg-header {
    color: #6d28d9;
}

/* MASR - Red */
.sirg-block.masr {
    border-left: 6px solid #dc2626;
}
.sirg-block.masr .sirg-header {
    color: #dc2626;
}