/* ==========================================================================
   MSIRJ — Arrow List Component
   Uniform, responsive list styling for scope/objectives/submissions/stages
   lists across all pages. Matches existing red accent theme.
   ========================================================================== */

.msirj-arrow-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.msirj-arrow-list li {
  position: relative;
  padding: 0.65rem 0.25rem 0.65rem 1.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 1rem;
  line-height: 1.5;
  transition: padding-left 0.15s ease, color 0.15s ease;
}

.msirj-arrow-list li:last-child {
  border-bottom: none;
}

.msirj-arrow-list li::before {
  content: "\2192"; /* → */
  position: absolute;
  left: 0;
  top: 0.6rem;
  color: #1B7A3D;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
}

.msirj-arrow-list li:hover {
  padding-left: 2.15rem;
  color: #1B7A3D;
}

/* Optional numbered variant — for ordered/sequential lists like
   submission stages or objectives, where order matters */
.msirj-numbered-list {
  list-style: none;
  counter-reset: msirj-counter;
  margin: 0.5rem 0 0;
  padding: 0;
}

.msirj-numbered-list li {
  position: relative;
  counter-increment: msirj-counter;
  padding: 0.7rem 0.25rem 0.7rem 2.6rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 1rem;
  line-height: 1.5;
}

.msirj-numbered-list li:last-child {
  border-bottom: none;
}

.msirj-numbered-list li::before {
  content: counter(msirj-counter);
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1B7A3D;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  line-height: 1;
}

/* Section divider between card-text blocks, for visual separation
   between Focus Areas / Objectives / Submissions / Stages sections */
.msirj-section-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 0;
}

/* Mobile refinements */
@media (max-width: 767px) {
  .msirj-arrow-list li,
  .msirj-numbered-list li {
    font-size: 0.94rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }
  .msirj-arrow-list li::before {
    top: 0.55rem;
  }
  .msirj-numbered-list li::before {
    top: 0.45rem;
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   MSIRJ — Duty Block Component
   For policy pages (Duties of Author, Editors Ethics, etc.) — replaces
   giant single <p> blocks with readable, titled sections.
   ========================================================================== */

.msirj-duty-list {
  margin-top: 1.5rem !important;
}

.msirj-duty {
  padding: 1.5rem 0 1.5rem 2.2rem !important;
  border-bottom: 1px solid rgba(0,0,0,0.1) !important;
  position: relative !important;
}

.msirj-duty:last-child {
  border-bottom: none !important;
}

.msirj-duty::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 1.6rem !important;
  width: 1.35rem !important;
  height: 1.35rem !important;
  border-radius: 50% !important;
  background: #1B7A3D !important;
}

.msirj-duty::after {
  content: "" !important;
  position: absolute !important;
  left: 0.34rem !important;
  top: 1.94rem !important;
  width: 0.68rem !important;
  height: 0.36rem !important;
  border-left: 2px solid #fff !important;
  border-bottom: 2px solid #fff !important;
  transform: rotate(-45deg) !important;
}

.msirj-duty h5 {
  color: #1B7A3D !important;
  font-weight: 700 !important;
  font-size: 1.12rem !important;
  margin-bottom: 0.6rem !important;
  margin-top: 0 !important;
}

.msirj-duty p {
  text-align: justify !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
  color: #333 !important;
}

@media (max-width: 767px) {
  .msirj-duty {
    padding: 1.2rem 0 1.2rem 1.9rem !important;
  }
  .msirj-duty h5 {
    font-size: 1.02rem !important;
  }
  .msirj-duty::before {
    width: 1.15rem !important;
    height: 1.15rem !important;
    top: 1.5rem !important;
  }
  .msirj-duty::after {
    left: 0.28rem !important;
    top: 1.78rem !important;
    width: 0.55rem !important;
    height: 0.3rem !important;
  }
}

/* ==========================================================================
   MSIRJ — Page Title Banner
   Consistent green-themed hero banner for every inner-page title section,
   replacing the plain grey background with the same tone used on the
   homepage's "Explore & Enlighten" overlay.
   ========================================================================== */

.msirj-page-hero {
  position: relative !important;
  background-image: url('../../images/academic-657x435.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-color: #1B7A3D !important;
  overflow: hidden !important;
}

.msirj-page-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-color: #1B7A3D !important;
  opacity: 0.82 !important;
  pointer-events: none !important;
}

.msirj-page-hero .container,
.msirj-page-hero .media-container-row {
  position: relative !important;
  z-index: 2 !important;
}

.msirj-page-hero h1,
.msirj-page-hero h2,
.msirj-page-hero h3,
.msirj-page-hero .title,
.msirj-page-hero .mbr-section-title {
  color: #ffffff !important;
}

.msirj-page-hero p,
.msirj-page-hero .mbr-text {
  color: rgba(255,255,255,0.9) !important;
}

#article07-2a {
  padding-top: 20px !important;
}
#article07-2a .row {
  margin-top: 0 !important;
}


/* ==========================================================================
   MSIRJ — Stylish Form Component
   Used on Submit Paper, Track Paper, Verify Certificate
   ========================================================================== */

.msirj-form-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 2.2rem 2rem;
}

.msirj-form-card .form-control {
  border: 1px solid #d8d8d8 !important;
  border-radius: 6px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.96rem !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
  background: #fcfcfc !important;
}

.msirj-form-card .form-control:focus {
  border-color: #1B7A3D !important;
  box-shadow: 0 0 0 3px rgba(27,122,61,0.15) !important;
  background: #fff !important;
  outline: none !important;
}

.msirj-form-card label {
  font-weight: 600;
  font-size: 0.88rem;
  color: #333;
  margin-bottom: 0.4rem;
  display: block;
}

.msirj-form-card .btn-primary,
.msirj-form-card button[type="submit"] {
  background: #1B7A3D !important;
  border-color: #1B7A3D !important;
  border-radius: 6px !important;
  padding: 0.75rem 2.2rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  transition: background 0.15s ease !important;
}

.msirj-form-card .btn-primary:hover,
.msirj-form-card button[type="submit"]:hover {
  background: #14602F !important;
}

@media (max-width: 767px) {
  .msirj-form-card {
    padding: 1.4rem 1.1rem;
    border-radius: 8px;
  }
}

/* ==========================================================================
   MSIRJ — Data Table Component
   Used on Call for Papers (dates & deadlines)
   ========================================================================== */

.msirj-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.msirj-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.msirj-table thead th {
  background: #1B7A3D;
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 0.9rem 1.2rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.msirj-table tbody td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.93rem;
}

.msirj-table tbody tr:last-child td {
  border-bottom: none;
}

.msirj-table tbody tr:nth-child(even) {
  background: rgba(27,122,61,0.03);
}

.msirj-table tbody tr:hover {
  background: rgba(27,122,61,0.07);
}


/* Kill the theme's built-in top spacing on the aims-list section —
   it was designed for a different counter component and left a large
   empty gap once the counter-container markup was removed. */
#content11-w {
  padding-top: 10px !important;
  margin-top: 0 !important;
}
#content11-w .media-container-row {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#content11-w .container {
  padding-top: 0 !important;
}
#article03-1a {
  padding-bottom: 10px !important;
  margin-bottom: 0 !important;
}
#article03-1a .content-wrapper {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
