/* =========================
IMPORT FONT
========================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* =========================
                SECTION
            ========================= */

.journal-list-of-articles-title {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  border-left: 6px solid orange;
  padding-left: 12px;
  margin-left: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.journal-list-of-articles-title h3 {
  margin: 10px 0px;
}

#list-view {
  font-family: "Inter", sans-serif;
}

/* =========================
ROW
========================= */
#list-view .row {
  margin-left: -12px;
  margin-right: -12px;
}

#list-view .journal-col,
#list-view .col-md-6 {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 25px;
}

/* =========================
CARD
========================= */
.list-of-articles-main-head {
  background: #fff;
  border: 1px solid #dbe4ee;
  border-radius: 14px;
  padding: 18px;
  min-height: 245px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-of-articles-main-head:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* =========================
MAIN FLEX
========================= */
.list-of-articles-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

/* =========================
LEFT IMAGE
========================= */
.left {
  display: flex;
  flex-shrink: 0;
}

.left a {
  display: block;
}

.left img {
  height: auto;
  border-radius: 10px;
  border: 1px solid #d8e0ea;
  display: block;
  background: #fff;
  margin-right: 10px;
}

.list-left-content {
  width: 90%;
}

.list-left-content h3 {
  padding-left: 15px;
  font-size: 17px;
  font-weight: 900;
}

.list-left-content h6 {
  padding-left: 15px;
  font-size: 15px;
}

/* =========================
DETAILS AREA
========================= */
.details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* =========================
TITLE
========================= */
.details h3 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #101828;
  margin: 0 0 18px;
  min-height: 55px;
}

.details h3 a {
  color: inherit;
  text-decoration: none;
}

.details h3 a:hover {
  color: #002147;
}

/* =========================
ISSN
========================= */
.details h6 {
  font-size: 14px;
  font-weight: 700;
  color: #002147;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

/* =========================
PUBMED + BUTTON AREA
========================= */
.pubmed-area-submit {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: 100%;
}

/* =========================
PUBMED BOX
========================= */
.pubmed-area {
  width: 185px;
  min-height: 92px;
  background: #f8fbff;
  border: 1px solid #cfe0ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.pubmed-area:hover {
  background: #eef5ff;
  border-color: #9fc4ff;
}

.pubmed-area a {
  text-decoration: none;
  display: block;
  width: 100%;
}

.pubmed-area img {
  width: 78px;
  margin-bottom: 6px;
}

.logocaption {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

/* =========================
BUTTON COLUMN
========================= */
.issnno-est {
  display: flex;
  gap: 10px;
}

/* =========================
BUTTONS
========================= */
.journal-item .btn {
  width: 100%;
  background: #f3f8ff;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  padding: 10px 14px;
  color: #2e2d2d;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: none;
}

.journal-item .btn:hover {
  background: #002147;
  color: #fff;
  border-color: #cfe0ff;
  text-decoration: none;
}

/* =========================
SECTION TITLE
========================= */
#list-view .col-md-12 h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 10px;
}

/* =========================
TABLET
========================= */
@media (max-width: 991px) {
  .list-of-articles-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left {
    width: 100% !important;
    padding-top: 15px;
    text-align: left;
  }

  .list-of-articles-main-head {
    height: 340px;
  }


  .details {
    width: 100%;
  }

  .details h3 {
    min-height: auto;
  }

  .pubmed-area-submit {
    flex-direction: column;
    align-items: center;
  }

  .pubmed-area,
  .issnno-est {
    width: 100%;
  }
}

/* =========================
MOBILE
========================= */
@media (max-width: 767px) {
  .list-of-articles-main-head {
    padding: 15px;
  }

  .left {
    width: 100% !important;
  }

  .details h3 {
    font-size: 17px;
  }

  .list-of-articles-main-head {
    height: 220px;
  }

  .details h6 {
    font-size: 14px;
  }

  .btn {
    font-size: 14px;
    padding: 11px 12px;
  }

  #list-view .col-md-12 h3 {
    font-size: 22px;
  }
}

/* ================= search option ================ */

.journal-search-wrapper {
  width: 100%;
  margin: 20px 0 40px;
}

#journalSearch {
  width: 100%;
  height: 65px;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  padding: 0 25px;
  font-size: 18px;
  background: #fff;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#journalSearch:focus {
  border-color: #0d6efd;
  outline: none;
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.15);
}

#journalSearch::placeholder {
  color: #94a3b8;
  font-size: 16px;
}

.list-lift-image {
  width: 25%;
}
