/* ==========================================================================
       1. DESKTOP & BASE STYLES
       ========================================================================== */
    .journal-container {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        max-width: 1150px;
        width: 100%;
        padding: 24px;
        gap: 24px;
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif;
        color: #333333;
        margin: 0 auto;
    }

    /* Left Card */
    .journal-card {
        background-color: #d1ebf1;
        border-radius: 12px;
        padding: 20px 16px;
        width: 330px;
        flex-shrink: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        border: 2px solid #b8e2ec;
        box-sizing: border-box;
    }

    .journal-card-top {
        width: 100%;
    }

    .journal-title {
        font-size: 15px;
        font-weight: 800;
        color: #0b2545;
        text-transform: uppercase;
        line-height: 1.35;
        margin: 0 0 8px 0;
        text-align: center;
    }

    .journal-acronym {
        font-size: 16px;
        font-weight: bold;
        color: #0b2545;
        margin-bottom: 12px;
        text-align: center;
    }

    .journal-meta {
        font-size: 13px;
        color: #134074;
        line-height: 1.5;
        margin-bottom: 16px;
        text-align: center;
    }

    .journal-meta p {
        margin: 4px 0;
        word-break: break-word;
    }

    .journal-meta strong {
        color: #0b2545;
    }

    .journal-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
        margin: 16px 0;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background-color: #8da9c4;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 20px;
        flex-shrink: 0;
    }

    .access-tag {
        font-size: 16px;
        font-weight: 800;
        color: #0b2545;
        letter-spacing: 0.5px;
        text-align: center;
    }

    /* Right Content */
    .journal-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-size: 14px;
        line-height: 1.6;
        color: #444444;
        padding-left: 15px;
        padding-right: 15px;
    }

    .journal-description p {
        margin: 0 0 16px 0;
        text-align: justify;
    }

    .journal-description strong {
        color: #111111;
    }

    .journal-link {
        color: #2b6cb0;
        text-decoration: none;
    }

    .journal-link:hover {
        text-decoration: underline;
    }

    .contact-box {
        margin-top: 12px;
        padding-top: 16px;
        border-top: 1px solid #e2e8f0;
    }

    .contact-box p {
        margin: 0;
        text-align: justify;
        word-break: break-word;
    }

    .email-link {
        color: #e53e3e;
        font-weight: bold;
        text-decoration: none;
    }

    .email-link:hover {
        text-decoration: underline;
    }

    /* ==========================================================================
       2. MOBILE MEDIA QUERY (Max-Width: 640px)
       ========================================================================== */
    @media screen and (max-width: 640px) {
        /* Container Frame: Contracted from sides */
        .journal-container {
            flex-direction: column;
            width: 92%; /* Pushes the entire frame in from mobile screen edge */
            margin: 16px auto; /* Centers the container frame with margin */
            padding: 18px 12px; /* Internal side padding */
            gap: 20px;
            box-sizing: border-box;
        }

        /* Inner Left Card Frame */
        .journal-card {
            width: 100%;
            max-width: 100%;
            padding: 18px 12px;
        }

        /* Text Content Inside Right Area */
        .journal-content {
            padding-left: 8px; /* Pushes text inward slightly from container frame edge */
            padding-right: 8px;
        }

        /* Strict Text Justify Alignment for Mobile */
        .journal-description p,
        .contact-box p {
            text-align: justify;
            text-justify: inter-word;
            font-size: 13.5px;
            line-height: 1.55;
        }

        .journal-title {
            font-size: 14px;
        }

        .journal-icons {
            margin: 12px 0;
            gap: 16px;
        }

        .icon-circle {
            width: 48px;
            height: 48px;
            font-size: 18px;
        }
    }