/* ================================================
   IMPORT GOOGLE FONTS
================================================ */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Open+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');


/* ================================================
   BASE / GLOBAL STYLES
================================================ */
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  text-align=justify;
}

h1, h2, h3, h4, h5, h6,
.navbar, .menu_title, .page_title {
  font-family: 'Montserrat', sans-serif;
  color: #1d3557;
}

h1 { font-size: 2rem; font-weight: 600; }
h2 { font-size: 1.75rem; font-weight: 600; }

p, li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

h2.custom-section-title {
  border-left: 4px solid #0469B5;
  padding-left: 10px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #0469B5;
}


/* Links */
a {
  color: #1565C0;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}

a:hover,
a:focus {
  color: #0D3B73;
  text-decoration: underline;
}

/* ====== IJPEDS Homepage Styles ====== */

.ijpeds-homepage {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #0D3B73;
  line-height: 1.6;
}

/* Header & Intro */
.intro-header {
  text-align: center;
  margin-bottom: 40px;
}

.intro-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.2em;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.intro-header .issn {
  font-weight: 600;
  color: #175CA1;
  margin-bottom: 0.1em;
}

.intro-header .tagline {
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 0.8em;
  color: #0469B5;
}

.intro-header .power-up {
  font-size: 1.2rem;
  font-weight: 600;
  color: #03427a;
}

/* Section Headings */
.about-scope h2,
.indexing-metrics h2,
.submission-info h2 {
  font-size: 1.9rem;
  border-left: 6px solid #0469B5;
  padding-left: 12px;
  margin-bottom: 16px;
  color: #0469B5;
}

/* Paragraphs */
.about-scope p,
.submission-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.1em;
}


/* Indexing Logos */
.indexing-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.indexing-logos img {
  height: 45px;
  object-fit: contain;
}

/* Metrics text */
.metrics-text {
  font-size: 1rem;
  color: #333;
  text-align: center;
}

/* Call to Action Buttons */
.cta-buttons {
  text-align: center;
  margin-top: 45px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s ease;
  min-width: 220px;
  text-align: center;
}

.btn-author {
  background-color: #0469B5;
}

.btn-author:hover {
  background-color: #034f7a;
}

.btn-reviewer {
  background-color: #175CA1;
}

.btn-reviewer:hover {
  background-color: #0f3d67;
}

.btn-reader {
  background-color: #0D3B73;
}

.btn-reader:hover {
  background-color: #092746;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .ijpeds-homepage {
    margin: 20px 15px;
    padding: 0 10px;
  }

  .intro-header h1 {
    font-size: 2rem;
  }

  .about-scope h2,
  .indexing-metrics h2,
  .submission-info h2 {
    font-size: 1.5rem;
    padding-left: 8px;
    border-left-width: 4px;
    margin-bottom: 12px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    min-width: auto;
    width: 100%;
    padding: 12px 0;
    font-size: 1.1rem;
  }

  .indexing-logos {
    gap: 15px;
  }

  .indexing-logos img {
    height: 35px;
  }
}

/*HOME*/

.metrics-container {
      max-width: 900px;
      margin: 20px auto;
      padding: 10px;
      background: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border-radius: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
    }

    .metric-box {
      flex: 1 1 42%;
      background-color: #fdfdfd;
      padding: 20px;
      border: 1px solid #e1e1e1;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .metric-box:hover {
      background-color: #f5faff;
      box-shadow: 0 6px 18px rgba(0, 123, 255, 0.15);
      transform: translateY(-2px);
      border-color: #d0e7ff;
    }

    .metric-title {
      font-size: 12px;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 10px;
      border-bottom: 2px solid #eee;
      padding-bottom: 5px;
    }

    .metric-item {
      margin-bottom: 10px;
      font-size: 10pt;
      color: #333;
    }

    .metric-item span {
      font-weight: 600;
      color: #000;
    }

    .metric-link {
      display: inline-block;
      margin-top: 10px;
      font-size: 10pt;
      color: #0073e6;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .metric-link:hover {
      color: #005bb5;
    }

    @media (max-width: 991px) {
      .metric-box {
        flex: 1 1 100%;
      }
    }

/* ================================================
   BUTTON STYLES
================================================ */
.button, .pkp_button, .btn,
.button-primary, .button-secondary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  box-sizing: border-box;
  min-height: 44px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
}

.button-primary {
  background-color: #0D3B73;
  color: #ffffff;
  border: none;
}
.button-primary:hover {
  background-color: #1558b0;
  transform: translateY(-2px);
}

.button-secondary {
  background-color: transparent;
  color: #0D3B73;
  border: 2px solid #0D3B73;
}
.button-secondary:hover {
  background-color: #0D3B73;
  color: #ffffff;
  transform: translateY(-2px);
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ================================================
   HEADER / SITE NAME
================================================ */
.pkp_site_name {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1565C0;
  background-color: transparent;
  text-align: center;
  margin: 0;
  flex: 1 1 auto;
  white-space: nowrap;
  z-index: 12;
}

.pkp_site_name .is_img img {
    max-height: none;  /* Hapus batas tinggi */
    height: auto;
    max-width: 100%;
    width: auto;
    display: block;
}

/* =============================================
   RESPONSIVE HEADER LOGO (untuk 996px ke bawah)
============================================= */
@media (max-width: 991px) {
  .pkp_structure_head {
    padding: 10px 0px 20px 0px;
    text-align: center;
  }

  .pkp_site_name img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }

}


/* ================================================
   NAVIGATION (Primary & Mobile)
================================================ */
.pkp_navigation_primary {
  background-color: transparent !important;
  border: none;
}
.pkp_navigation_primary .navbar-nav > li > a {
  color: #ffffff !important;
  font-weight: 600;
  padding: 10px 15px;
}
.pkp_navigation_primary .navbar-nav > li > a:hover,
.pkp_navigation_primary .navbar-nav > li.active > a {
  background-color: #0D3B73 !important;
  color: #ffffff !important;
}
.pkp_navigation_primary .dropdown-menu {
  color: #2570BA;
  background-color: #ffffff;
}
.pkp_navigation_primary .dropdown-menu > li > a {
  color: inherit;
  font-weight: 600;
}
.pkp_navigation_primary .dropdown-menu > li > a:hover {
  background-color: #eeeeee;
  color: #000;
}

@media (max-width: 991px) {
  /* Menu utama */
  ul.pkp_navigation_primary.pkp_nav_list > li {
    border-bottom: 1px solid #ddd;
  }

  ul.pkp_navigation_primary.pkp_nav_list > li > a {
    display: block;
    background-color: #004080;
    color: #fff !important;
    font-weight: 700;
    padding: 12px 16px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  ul.pkp_navigation_primary.pkp_nav_list > li > a:hover {
    background-color: #005bb5;
  }

  ul.pkp_navigation_primary.pkp_nav_list > li:last-child {
    border-bottom: none;
  }

  /* Panah ▼ jika punya submenu */
  ul.pkp_navigation_primary.pkp_nav_list > li:has(ul) > a::after {
    content: " ▼";
    font-size: 0.75em;
    margin-left: 6px;
  }

  /* Submenu */
  ul.pkp_navigation_primary.pkp_nav_list > li > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border-top: 1px solid #ccc;
  }

  ul.pkp_navigation_primary.pkp_nav_list > li > ul > li {
    border-bottom: 1px solid #eee;
  }

  ul.pkp_navigation_primary.pkp_nav_list > li > ul > li:last-child {
    border-bottom: none;
  }

  ul.pkp_navigation_primary.pkp_nav_list > li > ul > li > a {
    display: block;
    padding: 10px 24px;
    color: #175CA1 !important;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: left !important; /* pastikan rata kiri */
  }

  ul.pkp_navigation_primary.pkp_nav_list > li > ul > li > a:hover {
    background-color: #eeeeee;
    color: #0D3B73 !important;
  }

}

/* ================================================
   ARTICLE DETAIL PAGE
================================================ */
.obj_article_details h1 {
  font-family: 'Lora', serif;
  font-size: 26px;
  color: #1565C0;
  margin-bottom: 0.5em;
}
.obj_article_details .authors {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 10px;
  color: #555555;
}
.obj_article_details .abstract,
.obj_article_details .main_entry {
  text-align: justify;
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
}

/* ================================================
    REVIEWER PAGE
================================================ */
.alpha-filter {
    text-align: center;
    margin-bottom: 2px;
}
.alpha-filter a {
    text-decoration: none;
    margin: 3px;
    padding: 6px 10px;
    background: #e1ecf4;
    color: #0b3c5d;
    border-radius: 4px;
    font-size: 13px;
    display: inline-block;
}
.alpha-filter a:hover {
    background: #0b3c5d;
    color: #fff;
}
.alpha-section {
    margin-bottom: 40px;
}
.alpha-title {
    background: #0b3c5d;
    color: white;
    padding: 8px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 18px;
}

.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}

.stat {
    text-align: center;
    flex: 1;
    position: relative;

    /* Perbaikan agar konten vertikal dan horizontal center */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px; /* jarak antara h2 dan p */
}


/* Garis pemisah antar statistik */
.stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.stat h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 700;
}

.stat p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.4px;
}

/* ================================================
   FOOTER: TWO-COLUMN BALANCED LAYOUT
================================================ */
.pkp_structure_footer {
  background-color: #0D3B73;
  font-size: 12px;
  width: 100%;
  position: relative;
  padding: 00px 0;
}

.balanced-footer {
  background-color: #0D3B73;
  color: #ffffff;
  padding: 20px 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-col {
  flex: 1 1 45%;
  min-width: 260px;
}

.balanced-footer h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #ffffff;
  border-bottom: 2px solid #ffffff33;
  padding-bottom: 6px;
}

.footer-col a {
  color: #8ad0e6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-col p {
  line-height: 1.6;
  color: #f1f1f1;
  margin-bottom: 12px;
}

/* Indexing logos */
.indexing-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.index-logo {
  height: 35px;
  object-fit: contain;
  background: #fff;
  padding: 5px 10px;
  border-radius: 0px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-col {
    width: 100%;
  }

  .indexing-badges {
    justify-content: center;
  }
}


/* Hide specific OJS widget if any */
div[style*="padding:30px"][role="complementary"] {
  display: none;
}

/* ================================================
   CTA CARDS (Homepage)
================================================ */
.cta-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.cta-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.cta-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #003366;
}
.cta-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
}
.cta-card a {
  font-weight: 600;
  color: #4AA5FF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.cta-card a:hover {
  color: #175CA1;
}

/* ================================================
   IMPROVED SIDEBAR BLOCKS
================================================ */
.pkp_block {
  background: #ffffff; /* Lebih terang & kontras */
  padding: 15px 10px;
  border-radius: 10px;
  border: 1px solid #dee2e6; /* Tambah border tipis */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-left: 30px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.pkp_block + .pkp_block {
  border-top: 1px solid rgba(255, 255, 255, 0.15); /* garis tipis putih transparan */
  padding-top: 20px;  /* beri jarak dari border */
  margin-top: 20px;   /* jarak antar block */
}


.pkp_block:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.pkp_block .title {
  background: linear-gradient(to right, #0D3B73, #3B7ED0);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  border-radius: 8px 8px 0 0;
  padding: 10px 12px;
  margin: -18px -20px 15px -20px; /* full-width header */
  position: relative;
  box-shadow: inset 0 -2px 6px rgba(0,0,0,0.1);
}

.pkp_block .title::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 40px;
  height: 2px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 2px;
  transform: translateX(-50%);
}

.pkp_block .content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.pkp_block .content ul li {
  margin-bottom: 2px;
}

.pkp_block .content ul li a {
  color: #175CA1;
  font-size: 13px;
  display: block;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pkp_block .content ul li a:hover,
.pkp_block .content ul li a:focus {
  color: #ffffff;
  background-color: #175CA1;
  transform: translateX(3px);
}

/* ==============================
   RESPONSIVE MOBILE ADJUSTMENTS
=============================== */
@media (max-width: 991px) {
  .pkp_block {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 360px; /* Sesuaikan lebar sidebar di mobile */
  }

  .pkp_block .content ul {
    padding-left: 0;
    margin: 0 auto;       /* Center ul */
    max-width: 320px;     /* Batas maksimal ul */
  }

  .pkp_block .content ul li {
    margin-bottom: 3px;   /* Jarak antar item lebih rapat */
  }

  .pkp_block .content ul li a {
    padding: 8px 12px;    /* Padding lebih kecil */
    text-align: left;   /* Rata kiri tulisan */
    max-width: 100%;      /* Tidak melebar */
    margin-left: auto;
    margin-right: auto;
    transform: none;      /* Hilangkan translateX di hover untuk mobile */
  }

  .pkp_block .content ul li a:hover,
  .pkp_block .content ul li a:focus {
    transform: none;      /* Supaya hover tidak geser di mobile */
  }

/* Border dan padding atas untuk membatasi sidebar dari konten lain */
  .pkp_structure_sidebar.left {
    border-top: 1px solid #ccc;
    margin-top: 20px;
    padding-top: 15px;
  }

  /* Reset margin kiri sidebar block di mobile */
  .pkp_block {
    margin-left: auto !important;
    margin-right: auto !important;
  }

}


/* ================================================
   EDITORIAL CARDS
================================================ */
.section-title {
  color: #175CA1;
  font-size: 1.2rem;
  margin: 24px 0 12px;
  border-bottom: 2px solid #175CA1;
  padding-bottom: 4px;
}
.editor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.editor-card {
  background-color: #ffffff;
  border-left: 4px solid #dcf2fc;
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.editor-card:hover {
  background-color: #f0f6fc;
  box-shadow: 0 4px 8px rgba(23,92,161,0.12);
  transform: translateY(-2px);
}
.editor-card .icon {
  width: 20px;
  margin-right: 6px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.editor-card a:hover .icon {
  transform: scale(1.2);
}
.editor-photo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border: 3px solid #dcf2fc;
  border-radius: 12px 0 12px 0;
  background-color: #ffffff;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.editor-photo:hover {
  transform: scale(1.2);
  position: relative;
  z-index: 5;
}

/* ================================================
   STICKY NAV (Custom & Grid)
================================================ */
html {
  scroll-behavior: smooth;
}
.power-custom-nav,
.power-grid-nav {
  margin: auto;
  padding: 0 20px 40px;
}

.power-custom-nav .custom-nav,
.power-grid-nav .grid-nav {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 500;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 20px;
  margin-bottom: 24px;
}
.power-custom-nav .custom-nav ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.power-custom-nav {
  max-width: 960px;
}
.power-grid-nav {
  max-width: 960px;
}
.power-grid-nav .grid-nav ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.power-custom-nav .custom-nav ul li a,
.power-grid-nav .grid-nav ul li a {
  color: #2c3e50;
  font-weight: 600;
  font-size: 11px;
  text-decoration: none;
  padding: 10px;
  border-radius: 4px;
  transition: color 0.3s, background-color 0.3s;
}
.power-custom-nav .custom-nav ul li a:hover,
.power-grid-nav .grid-nav ul li a:hover {
  color: #007acc;
  background-color: #eef6fb;
}
.power-grid-nav .grid-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  background-color: #f9f9f9;
  text-align: center;
}

.power-custom-nav .custom-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  background-color: #f9f9f9;
  text-align: center;
}

/* Untuk .power-custom-nav */
.power-custom-nav h2[id], .power-custom-nav h3[id],
.power-custom-nav section[id], .power-custom-nav div[id] {
  scroll-margin-top: 150px; /* atau sesuai kebutuhan */
}

/* Untuk .power-grid-nav */
.power-grid-nav h2[id], .power-grid-nav h3[id],
.power-grid-nav section[id], .power-grid-nav div[id] {
  scroll-margin-top: 190px; /* atau sesuai kebutuhan */
}


@media (max-width: 991px) {
  .power-custom .custom-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .power-custom .custom-nav {
    padding: 14px 0;
    margin-bottom: 16px;
  }
  .power-custom p,
  .power-custom ul li {
    font-size: 14px;
  }
  .power-custom h2 {
    font-size: 20px;
  }
  .power-grid-nav .grid-nav ul li a {
    min-height: 20px;           /* Kurangi tinggi minimal */
    padding: 4px 8px;          /* Kurangi padding */
    font-size: 10px;            /* Ukuran font lebih kecil */
    background-color: #f9f9f9;  /* Opsional: bisa disesuaikan */
  }

/* Anchor scroll-offsets */
.power-grid-nav h2[id], .power-grid-nav h3[id],
.power-grid-nav section[id], .power-grid-nav div[id] {
  scroll-margin-top: 215px;
}

/* Anchor scroll-offsets */
.power-custom-nav h2[id], .power-custom-nav h3[id],
.power-custom-nav section[id], .power-custom-nav div[id] {
  scroll-margin-top: 150px;
}

}

/* Minimalis Current Issue - Cover Kecil */
.page_index .current_issue .obj_issue_toc .cover {
    width: 100px !important;
    margin-right: 1rem !important;
}

.page_index .current_issue .obj_issue_toc .cover img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
}
