/* =====================================================
   INNOVATIVE PUBLICATION
   Journal Panel – Clean Academic Layout
   Image size untouched
===================================================== */

/* -------------------------
   PANEL WRAPPER
------------------------- */
.site-journal {
    display: grid;
    grid-template-columns: 1fr 2fr; /* layout orqali kattaroq ko‘rinish */
    column-gap: 72px;

    background-color: #ffffff;

    border-radius: 24px;
    padding: 56px 60px;
    margin-bottom: 64px;

    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.10);

    transition: box-shadow .3s ease, transform .3s ease;
}

.site-journal:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 85px rgba(15, 23, 42, 0.15);
}

/* -------------------------
   JOURNAL IMAGE WRAPPER
   ❗ Image itself is NOT modified
------------------------- */
.site-journal-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ❌ deliberately no img rules here */
/* image remains exactly as uploaded */

/* -------------------------
   JOURNAL CONTENT
------------------------- */
.site-journal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title */
.site-journal-title {
    margin-bottom: 12px;
}

.site-journal-title a {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;

    color: #0F172A;
    text-decoration: none;
}

.site-journal-title a:hover {
    color: var(--primary);
}

/* Description */
.site-journal-description {
    margin-top: 18px;

    font-size: 16px;
    line-height: 1.85;
    color: #1F2937;
}

/* Emphasis */
.site-journal-description strong {
    color: #020617;
    font-weight: 700;
}

/* -------------------------
   ACTION BUTTONS
------------------------- */
.site-journal .links {
    margin-top: 32px;
}

.site-journal .links .btn {
    display: inline-block;

    padding: 12px 34px;
    margin-right: 12px;

    font-size: 14.5px;
    font-weight: 700;

    border-radius: 999px;
    background-color: #ffffff;
    color: #0F172A;

    border: 1px solid rgba(15, 23, 42, 0.18);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);

    transition: all .25s ease;
}

.site-journal .links .btn:hover {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-soft)
    );

    color: #ffffff;
    border-color: transparent;

    box-shadow: 0 16px 36px rgba(3, 106, 241, 0.35);
}

/* -------------------------
   MOBILE OPTIMIZATION
------------------------- */
@media (max-width: 991px) {

    .site-journal {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        text-align: center;
    }

    .site-journal-img {
        margin-bottom: 32px;
    }

    .site-journal-body {
        align-items: center;
    }

    .site-journal-title a {
        font-size: 22px;
    }
}
