/* =========================================================
   JOURNALS LIST
   ========================================================= */

.journals {
    margin: 30px 0;
}

.journals h2 {
    margin: 0 0 25px;
    font-size: 28px;
    font-weight: 700;
    color: #0B6E4F;
    position: relative;
    padding-bottom: 12px;
}

.journals h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    background: #C6922B;
    border-radius: 3px;
}


/* =========================================================
   LIST
   ========================================================= */

.journals > ul {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.journals > ul > li {
    margin: 0;
    padding: 0;
}


/* =========================================================
   JOURNAL CARD
   ========================================================= */

.journals .body {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e9e7;
    border-radius: 12px;
    padding: 24px;

    display: flex;
    flex-direction: column;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.journals .body:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 110, 79, 0.35);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   JOURNAL TITLE
   ========================================================= */

.journals h3 {
    margin: 0 0 18px;
    padding: 0;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.journals h3 a {
    color: #0B6E4F;
    text-decoration: none;

    transition: color 0.2s ease;
}

.journals h3 a:hover {
    color: #C6922B;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.journals .description {
    flex: 1;
    margin-bottom: 20px;
}


/* =========================================================
   INFORMATION TABLE
   ========================================================= */

.journals .description table {
    width: 100% !important;
    border: none !important;
    border-collapse: collapse !important;

    font-size: 14px;
    line-height: 1.5;
}

.journals .description table tr {
    border-bottom: 1px solid #edf0ef;
}

.journals .description table tr:last-child {
    border-bottom: none;
}

.journals .description table td {
    border: none !important;
    padding: 9px 6px;
    vertical-align: top;
}


/* label */

.journals .description table td:first-child {
    width: 30%;

    font-weight: 600;
    color: #495057;
}


/* separator ":" */

.journals .description table td:nth-child(2) {
    width: 20px;

    text-align: center;
    font-weight: 600;
    color: #adb5bd;
}


/* value */

.journals .description table td:last-child {
    color: #555;
}


/* =========================================================
   LINKS
   ========================================================= */

.journals ul.links {
    list-style: none;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin: auto 0 0;
    padding: 18px 0 0;

    border-top: 1px solid #edf0ef;
}

.journals ul.links li {
    margin: 0;
    padding: 0;
}


/* =========================================================
   BUTTON
   ========================================================= */

.journals ul.links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 8px 16px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


/* View Journal */

.journals ul.links li.view a {
    color: #ffffff;
    background: #0B6E4F;
    border: 1px solid #0B6E4F;
}

.journals ul.links li.view a:hover {
    background: #095a41;
    border-color: #095a41;
    color: #ffffff;

    transform: translateY(-1px);
}


/* Current Issue */

.journals ul.links li.current a {
    color: #0B6E4F;
    background: #ffffff;
    border: 1px solid #0B6E4F;
}

.journals ul.links li.current a:hover {
    color: #ffffff;
    background: #0B6E4F;

    transform: translateY(-1px);
}


/* =========================================================
   MINI LINKS
   ========================================================= */

.journals .mini-links {
    display: inline-block;
    margin-left: 4px;

    font-size: 12px;
    white-space: nowrap;
}

.journals .mini-links a {
    color: #0B6E4F;
    text-decoration: none;
}

.journals .mini-links a:hover {
    color: #C6922B;
    text-decoration: underline;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {

    .journals > ul {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 576px) {

    .journals {
        margin: 20px 0;
    }

    .journals h2 {
        font-size: 24px;
    }

    .journals .body {
        padding: 18px;
    }

    .journals h3 {
        font-size: 18px;
    }

    .journals .description table {
        font-size: 13px;
    }

    .journals .description table td:first-child {
        width: 35%;
    }

    .journals ul.links {
        flex-direction: column;
    }

    .journals ul.links li,
    .journals ul.links a {
        width: 100%;
    }

}