/* --- CSS RESET & BASE STYLES --- */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }


    /* --- LAYOUT CONTAINER (Mobile-First) --- */
    .journal-container {
      display: grid;
      grid-template-columns: 1fr; /* Single column layout for mobile */
      gap: 32px;
      max-width: 1050px;
      width: 100%;
      margin: 0 auto;
      align-items: center;
    }

    /* --- LEFT COLUMN: COVER CONTAINER --- */
    .cover-wrapper {
      width: 100%;
      max-width: 320px;
      margin: 0 auto; /* Center cover on small screens */
    }

    /* Graphic Representation of the Journal Cover */
    .cover-card {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1.4; /* Dynamic aspect ratio scaling */
      border-radius: 6px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
      background: linear-gradient(135deg, #f8b400 0%, #f8b400 35%, #1b1c54 35%, #1b1c54 100%);
      color: #ffffff;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    .cover-header {
      z-index: 2;
    }

    .cover-title {
      font-size: clamp(20px, 4.5vw, 28px);
      font-weight: 900;
      color: #1b1c54;
      line-height: 1;
    }

    .cover-issn {
      font-size: 11px;
      font-weight: 700;
      color: #333333;
      margin-top: 4px;
    }

    .cover-subtitle {
      font-size: 10px;
      color: #1b1c54;
      font-weight: 600;
      margin-top: 8px;
      max-width: 160px;
      line-height: 1.2;
    }

    .cover-meta {
      text-align: right;
      font-size: 11px;
      z-index: 2;
      line-height: 1.3;
    }

    /* Hexagon Graphic Container */
    .cover-hex-grid {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -42%);
      width: 72%;
      height: 52%;
      border: 4px solid #1b1c54;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    .hex-inner-content {
      width: 92%;
      height: 92%;
      background: #f4f7f9;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px;
    }

    /* Multidisciplinary Icons Grid */
    .icons-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      align-items: center;
      justify-items: center;
    }

    .icon-box {
      width: 38px;
      height: 38px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      color: #1b1c54;
    }

    .icon-box svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .cover-footer {
      font-size: 10px;
      text-align: right;
      z-index: 2;
    }

    /* --- RIGHT COLUMN: COMPACT TEXT CARD --- */
    .content-wrapper {
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
      
      /* Compact Inset Spacing (Moves text in from left and right) */
      padding: 24px 28px;
      margin: 0 12px; /* Inset on mobile screens */
      
      display: flex;
      flex-direction: column;
      gap: 16px;
      font-size: 0.95rem;
      color: #333333;
    }

    /* Mobile Text Alignment: Justified with hyphen support */
    .content-wrapper p {
      text-align: justify;
      text-justify: inter-word;
      -webkit-hyphens: auto;
      hyphens: auto;
      line-height: 1.6;
    }

    .content-wrapper strong {
      color: #111111;
      font-weight: 700;
    }

    .content-wrapper a {
      color: #2b70c9;
      text-decoration: none;
      word-break: break-word;
    }

    .content-wrapper a:hover {
      text-decoration: underline;
    }

    /* --- MEDIA QUERIES --- */

    /* Desktop Breakpoint (768px and up) */
    @media (min-width: 768px) {
      .journal-container {
        grid-template-columns: 310px 1fr; /* Desktop layout */
        gap: 32px;
      }

      .cover-wrapper {
        margin: 0;
      }

      .content-wrapper {
        /* Desktop Compact Inset Adjustments */
        padding: 32px 36px;
        margin: 0; /* Align with container layout */
        font-size: 1rem;
      }
    }