/* ============================================================
   DLR Custom Theme - Complete CSS
   Professional Academic Journal Design
   Color Scheme: Navy (#1B3A5C) / Gold (#C5982A) / White
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --dlr-navy: #1B3A5C;
  --dlr-navy-dark: #0f2440;
  --dlr-navy-light: #2a5080;
  --dlr-gold: #C5982A;
  --dlr-gold-light: #d4ad4a;
  --dlr-blue: #1565C0;
  --dlr-blue-light: #e8f0fe;
  --dlr-white: #ffffff;
  --dlr-gray-50: #f8f9fa;
  --dlr-gray-100: #f0f2f5;
  --dlr-gray-200: #e4e7ec;
  --dlr-gray-300: #d0d5dd;
  --dlr-gray-400: #98a2b3;
  --dlr-gray-500: #667085;
  --dlr-gray-600: #475467;
  --dlr-gray-700: #344054;
  --dlr-gray-800: #1d2939;
  --dlr-text: #1a1a2e;
  --dlr-text-light: #4a5568;
  --dlr-text-muted: #718096;
  --dlr-success: #16a34a;
  --dlr-danger: #dc2626;
  --dlr-border: #e2e8f0;
  --dlr-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --dlr-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --dlr-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --dlr-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --dlr-radius: 8px;
  --dlr-radius-lg: 12px;
  --dlr-radius-xl: 16px;
  --dlr-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --dlr-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --dlr-font-heading: 'Outfit', 'Inter', sans-serif;
  --dlr-container: 1280px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--dlr-font) !important;
  color: var(--dlr-text);
  background: var(--dlr-gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pkp_structure_page {
  background: var(--dlr-gray-50);
}

/* Hide default OJS header entirely */
.pkp_structure_head {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.pkp_head_wrapper {
  padding: 0 !important;
  max-width: 100% !important;
}

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.dlr-announcement-bar {
  background: var(--dlr-navy-dark);
  color: var(--dlr-white);
  font-size: 0.8rem;
  padding: 8px 0;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.dlr-announcement-bar .dlr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dlr-announcement-bar__text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.dlr-announcement-bar__text i {
  color: var(--dlr-gold);
}

.dlr-announcement-bar__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dlr-announcement-bar__links a {
  color: var(--dlr-gray-300);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--dlr-transition);
}

.dlr-announcement-bar__links a:hover {
  color: var(--dlr-white);
}

.dlr-announcement-bar__search {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 4px 10px;
}

.dlr-announcement-bar__search input {
  background: transparent;
  border: none;
  color: var(--dlr-white);
  font-size: 0.8rem;
  outline: none;
  width: 120px;
}

.dlr-announcement-bar__search input::placeholder {
  color: var(--dlr-gray-400);
}

.dlr-announcement-bar__search button {
  background: var(--dlr-blue);
  border: none;
  color: var(--dlr-white);
  padding: 3px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.75rem;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.dlr-container {
  max-width: var(--dlr-container);
  margin: 0 auto;
  padding: 0 50px;
}

/* ============================================================
   HEADER SECTION
   ============================================================ */
.dlr-header {
  background: var(--dlr-white);
  padding: 15px 0;
  position: relative;
  z-index: 90;
}

.dlr-header .dlr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dlr-header__right {
  display: flex;
  align-items: center;
  gap: 25px;
  /* Adjust gap to keep register and login forms close to each other */
}

.dlr-header__brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  flex-shrink: 0;
}

.dlr-header__logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.dlr-header__logo-placeholder {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--dlr-navy), var(--dlr-navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dlr-white);
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  padding: 8px;
  border: 3px solid var(--dlr-gold);
}

.dlr-header__title-area {
  display: flex;
  flex-direction: column;
}

.dlr-header__title {
  font-family: var(--dlr-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dlr-navy);
  line-height: 1.2;
  margin: 0;
}

.dlr-header__subtitle {
  font-size: 0.85rem;
  color: var(--dlr-text-muted);
  margin-top: 2px;
}

/* Header Login Form */
.dlr-header__login {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dlr-header__login-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dlr-navy);
}

.dlr-header__login-form {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dlr-header__user-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--dlr-navy);
}

.dlr-header__user-menu span {
  font-weight: 500;
}

.dlr-header__login-form input[type="text"],
.dlr-header__login-form input[type="password"] {
  padding: 8px 12px;
  border: 1px solid var(--dlr-gray-300);
  border-radius: 6px;
  font-size: 0.85rem;
  width: 160px;
  transition: var(--dlr-transition);
  font-family: var(--dlr-font);
}

.dlr-header__login-form input:focus {
  outline: none;
  border-color: var(--dlr-blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

.dlr-header__login-btn {
  padding: 8px 20px;
  background: var(--dlr-blue);
  color: var(--dlr-white);
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--dlr-transition);
  font-family: var(--dlr-font);
}

.dlr-header__login-btn:hover {
  background: #1256a3;
  transform: translateY(-1px);
}

.dlr-header__login-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}

.dlr-header__login-extra label {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--dlr-text-muted);
  cursor: pointer;
}

.dlr-header__login-extra a {
  color: var(--dlr-blue);
  text-decoration: none;
}

.dlr-header__login-extra a:hover {
  text-decoration: underline;
}

/* Header Register */
.dlr-header__register {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.dlr-header__register-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dlr-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dlr-navy);
  font-size: 1.1rem;
}

.dlr-header__register a {
  text-decoration: none;
  color: var(--dlr-blue);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--dlr-transition);
}

.dlr-header__register a:hover {
  color: var(--dlr-navy);
}

.dlr-header__register-label {
  font-size: 0.75rem;
  color: var(--dlr-text-muted);
}

/* Mobile Menu Toggle */
.dlr-mobile-toggle {
  display: none;
  background: var(--dlr-navy);
  border: none;
  color: var(--dlr-white);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--dlr-transition);
}

.dlr-mobile-toggle:hover {
  background: var(--dlr-navy-light);
}

/* ============================================================
   PRIMARY NAVIGATION
   ============================================================ */
.dlr-nav {
  position: relative;
  margin: 0 15px;
  /* Space for the ribbon tails */
  z-index: 80;
}

/* Ribbon tails */
.dlr-nav::before,
.dlr-nav::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: -10px;
  width: 40px;
  background: var(--dlr-navy);
  z-index: -2;
}

.dlr-nav::before {
  left: 20px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 15px 50%, 0 0);
}

.dlr-nav::after {
  right: 20px;
  clip-path: polygon(0 0, 0 100%, 100% 100%, calc(100% - 15px) 50%, 100% 0);
}

/* Main background wrapper for the nav bar (to separate it from the pseudo-element tails) */
.dlr-nav__list-wrapper {
  background: var(--dlr-navy);
  position: relative;
  z-index: 10;
}

/* Ribbon folds */
.dlr-nav__list-wrapper::before,
.dlr-nav__list-wrapper::after {
  content: "";
  position: absolute;
  top: 100%;
  border-top: 10px solid var(--dlr-navy-dark);
  width: 0;
  height: 0;
  z-index: -1;
}

.dlr-nav__list-wrapper::before {
  left: 0;
  border-left: 10px solid transparent;
}

.dlr-nav__list-wrapper::after {
  right: 0;
  border-right: 10px solid transparent;
}

.dlr-nav__list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.dlr-nav__item {
  position: relative;
}

.dlr-nav__link {
  display: block;
  padding: 14px 22px;
  color: var(--dlr-white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: var(--dlr-transition);
  white-space: nowrap;
}

.dlr-nav__link:hover,
.dlr-nav__item.active .dlr-nav__link {
  background: var(--dlr-blue);
  color: var(--dlr-white);
}

/* Hide default OJS navigation */
.pkp_navigation_primary_row,
.pkp_navigation_user_wrapper,
.pkp_site_name_wrapper,
.pkp_site_nav_menu {
  display: none !important;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.dlr-hero {
  background: linear-gradient(135deg, var(--dlr-gray-100) 0%, #dce6f0 50%, #c4d5e8 100%);
  padding: 50px 0 60px;
}

.dlr-hero--bg {
  background: url('../../../../public/herobanner.webp') no-repeat right center;
  background-size: cover;
}

.dlr-hero {
  position: relative;
  overflow: hidden;
  margin: 0px 20px 0px 20px;
  border-radius: 5px;
  top: -13px;

}

.dlr-hero .dlr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dlr-hero__content {
  flex: 1;
  max-width: 600px;
}

.dlr-hero__tagline {
  font-family: var(--dlr-font-heading);
  font-size: 1.3rem;
  color: var(--dlr-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.dlr-hero__title {
  font-family: var(--dlr-font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dlr-navy);
  line-height: 1.15;
  margin: 0 0 16px;
}

.dlr-hero__title span {
  color: var(--dlr-gold);
}

.dlr-hero__desc {
  font-size: 0.95rem;
  color: var(--dlr-navy);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 500px;
}

.dlr-hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.dlr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--dlr-transition);
  cursor: pointer;
  border: none;
  font-family: var(--dlr-font);
}

.dlr-btn--primary {
  background: var(--dlr-navy);
  color: var(--dlr-white);
}

.dlr-btn--primary:hover {
  background: var(--dlr-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--dlr-shadow);
}

.dlr-btn--outline {
  background: var(--dlr-white);
  color: var(--dlr-navy);
  border: 2px solid var(--dlr-navy);
}

.dlr-btn--outline:hover {
  background: var(--dlr-navy);
  color: var(--dlr-white);
  transform: translateY(-2px);
}

.dlr-btn--gold {
  background: var(--dlr-gold);
  color: var(--dlr-white);
}

.dlr-btn--gold:hover {
  background: var(--dlr-gold-light);
  transform: translateY(-2px);
}

.dlr-btn--sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.dlr-hero__badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.dlr-hero__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--dlr-navy);
  font-weight: 700;
}

.dlr-hero__badge i {
  color: var(--dlr-gold);
  font-size: 0.9rem;
}

.dlr-hero__image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.dlr-hero__image img {
  max-width: 100%;
  width: 550px;
  height: auto;
  object-fit: contain;
}

.dlr-hero__image-placeholder {
  width: 360px;
  height: 280px;
  background: linear-gradient(135deg, rgba(27, 58, 92, 0.1), rgba(21, 101, 192, 0.15));
  border-radius: var(--dlr-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dlr-hero__image-placeholder::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--dlr-navy) 0%, var(--dlr-blue) 100%);
  border-radius: 50%;
  opacity: 0.1;
  top: -30px;
  right: -30px;
}

.dlr-hero__image-placeholder i {
  font-size: 5rem;
  color: var(--dlr-navy);
  opacity: 0.3;
}

/* ============================================================
   STATS CARDS
   ============================================================ */
.dlr-stats {
  padding: 30px 0;
  background: var(--dlr-white);
  border-bottom: 1px solid var(--dlr-gray-200);
}

.dlr-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dlr-stats__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--dlr-gray-50);
  border-radius: var(--dlr-radius-lg);
  border: 1px solid var(--dlr-gray-200);
  transition: var(--dlr-transition);
}

.dlr-stats__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--dlr-shadow);
  border-color: var(--dlr-blue);
}

.dlr-stats__card:nth-child(1) {
  border-left: 4px solid var(--dlr-navy);
}

.dlr-stats__card:nth-child(2) {
  border-left: 4px solid var(--dlr-blue);
}

.dlr-stats__card:nth-child(3) {
  border-left: 4px solid var(--dlr-gold);
}

.dlr-stats__card:nth-child(4) {
  border-left: 4px solid var(--dlr-success);
}

.dlr-stats__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.dlr-stats__card:nth-child(1) .dlr-stats__icon {
  background: rgba(27, 58, 92, 0.1);
  color: var(--dlr-navy);
}

.dlr-stats__card:nth-child(2) .dlr-stats__icon {
  background: rgba(21, 101, 192, 0.1);
  color: var(--dlr-blue);
}

.dlr-stats__card:nth-child(3) .dlr-stats__icon {
  background: rgba(197, 152, 42, 0.1);
  color: var(--dlr-gold);
}

.dlr-stats__card:nth-child(4) .dlr-stats__icon {
  background: rgba(22, 163, 74, 0.1);
  color: var(--dlr-success);
}

.dlr-stats__number {
  font-family: var(--dlr-font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dlr-navy);
  line-height: 1;
}

.dlr-stats__label {
  font-size: 0.82rem;
  color: var(--dlr-text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.dlr-stats__sublabel {
  font-size: 0.72rem;
  color: var(--dlr-gray-400);
  margin-top: 2px;
}

/* ============================================================
   MAIN CONTENT LAYOUT (Sidebar + Content + Right Panel)
   ============================================================ */
.dlr-main-layout {
  padding: 30px 0;
}

.dlr-main-layout .dlr-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}

.dlr-main-layout--two-col .dlr-container {
  grid-template-columns: 240px 1fr;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.dlr-sidebar {
  position: sticky;
  top: 20px;
}

.dlr-sidebar__section {
  margin-bottom: 20px;
}

.dlr-sidebar__heading {
  background: var(--dlr-navy);
  color: var(--dlr-white);
  padding: 12px 24px 12px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px 0 0 6px;
  margin: 0 -8px 0 0;
  /* Slight overhang for the ribbon effect */
  display: flex;
  align-items: center;
  gap: 8px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
}

.dlr-sidebar__heading i {
  font-size: 0.9rem;
}

.dlr-sidebar__menu {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-top: none;
  border-radius: 0 0 var(--dlr-radius) var(--dlr-radius);
  list-style: none;
  padding: 0;
  margin: 0;
}

.dlr-sidebar__menu li:not(:last-child) {
  border-bottom: 1px solid var(--dlr-gray-200);
}

.dlr-sidebar__group-label {
  padding: 10px 16px 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dlr-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--dlr-gray-100);
}

.dlr-sidebar__group-label:first-child {
  border-top: none;
}

.dlr-sidebar__link,
.dlr-sidebar__menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  color: var(--dlr-text-light);
  text-decoration: none;
  font-size: 0.83rem;
  transition: var(--dlr-transition);
  border-left: 3px solid transparent;
}

.dlr-sidebar__link:hover,
.dlr-sidebar__menu a:hover,
.dlr-sidebar__link.active,
.dlr-sidebar__menu a.active {
  background: var(--dlr-blue-light);
  color: var(--dlr-blue);
  border-left-color: var(--dlr-blue);
}

.dlr-sidebar__link i,
.dlr-sidebar__menu a i {
  width: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--dlr-gray-400);
}

.dlr-sidebar__link:hover i,
.dlr-sidebar__menu a:hover i,
.dlr-sidebar__link.active i,
.dlr-sidebar__menu a.active i {
  color: var(--dlr-blue);
}

/* Sidebar Special Blocks */
.dlr-sidebar__block {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius);
  padding: 16px;
  margin-bottom: 16px;
  text-align: center;
}

.dlr-sidebar__block--plagiarism {
  background: var(--dlr-gold);
  color: var(--dlr-white);
  border: none;
  padding: 12px 16px;
  border-radius: var(--dlr-radius);
  margin-bottom: 12px;
}

.dlr-sidebar__block--plagiarism span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dlr-sidebar__block--subscribe {
  background: linear-gradient(135deg, var(--dlr-navy), var(--dlr-navy-light));
  color: var(--dlr-white);
  border: none;
  border-radius: var(--dlr-radius);
  padding: 16px;
  text-align: center;
}

.dlr-sidebar__block--subscribe h4 {
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.dlr-sidebar__block--subscribe p {
  font-size: 0.72rem;
  margin: 0;
  opacity: 0.8;
}

.dlr-sidebar__block--subscribe i {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

/* ============================================================
   ABOUT SECTION (Homepage)
   ============================================================ */
.dlr-about {
  margin-bottom: 30px;
}

.dlr-about__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--dlr-navy);
}

.dlr-about__header h2 {
  font-family: var(--dlr-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dlr-navy);
  text-transform: uppercase;
  margin: 0;
}

.dlr-about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dlr-about__text {
  grid-column: 1 / -1;
}

.dlr-about__text h3 {
  font-family: var(--dlr-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 12px;
  line-height: 1.3;
}

.dlr-about__text p {
  color: var(--dlr-text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.dlr-about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  grid-column: 1 / -1;
}

.dlr-feature-card {
  padding: 16px;
  border-radius: var(--dlr-radius);
  border: 1px solid var(--dlr-gray-200);
  background: var(--dlr-white);
  transition: var(--dlr-transition);
}

.dlr-feature-card:hover {
  border-color: var(--dlr-blue);
  box-shadow: var(--dlr-shadow-sm);
}

.dlr-feature-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 6px;
}

.dlr-feature-card p {
  font-size: 0.78rem;
  color: var(--dlr-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   LATEST ISSUE SECTION
   ============================================================ */
.dlr-latest-issue {
  margin-bottom: 30px;
}

.dlr-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--dlr-navy);
}

.dlr-section-header h2 {
  font-family: var(--dlr-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dlr-navy);
  text-transform: uppercase;
  margin: 0;
}

.dlr-section-header .dlr-badge {
  background: var(--dlr-success);
  color: var(--dlr-white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dlr-latest-issue__content {
  display: flex;
  gap: 24px;
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  padding: 24px;
}

.dlr-latest-issue__cover {
  flex: 0 0 180px;
}

.dlr-latest-issue__cover img {
  width: 100%;
  border-radius: var(--dlr-radius);
  box-shadow: var(--dlr-shadow);
}

.dlr-latest-issue__cover-placeholder {
  width: 180px;
  height: 240px;
  background: linear-gradient(135deg, var(--dlr-navy), var(--dlr-navy-light));
  border-radius: var(--dlr-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dlr-white);
  text-align: center;
  padding: 16px;
  box-shadow: var(--dlr-shadow);
}

.dlr-latest-issue__cover-placeholder h5 {
  font-family: var(--dlr-font-heading);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: 0.05em;
}

.dlr-latest-issue__cover-placeholder span {
  font-size: 0.65rem;
  opacity: 0.7;
  text-transform: uppercase;
}

.dlr-latest-issue__info {
  flex: 1;
}

.dlr-latest-issue__info h3 {
  font-family: var(--dlr-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 6px;
}

.dlr-latest-issue__date {
  font-size: 0.82rem;
  color: var(--dlr-text-muted);
  margin-bottom: 12px;
}

.dlr-latest-issue__desc {
  font-size: 0.88rem;
  color: var(--dlr-text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

.dlr-latest-issue__topics {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.dlr-latest-issue__topics li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--dlr-text-light);
}

.dlr-latest-issue__topics li i {
  color: var(--dlr-blue);
  font-size: 0.8rem;
}

.dlr-latest-issue__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   RIGHT PANEL
   ============================================================ */
.dlr-top-cols {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.dlr-center-content {
  flex: 1;
  min-width: 0;
}

.dlr-right-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 300px;
  max-width: 300px;
}

.dlr-panel-card {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  overflow: hidden;
}

.dlr-panel-card__header {
  background: var(--dlr-navy);
  color: var(--dlr-white);
  padding: 12px 24px 12px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dlr-panel-card__body {
  padding: 16px;
}

.dlr-panel-card__body p {
  font-size: 0.82rem;
  color: var(--dlr-text-light);
  line-height: 1.6;
  margin: 0 0 12px;
}

.dlr-scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dlr-scope-list li {
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--dlr-blue);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--dlr-gray-100);
}

.dlr-scope-list li:last-child {
  border-bottom: none;
}

.dlr-scope-list li i {
  color: var(--dlr-blue);
  font-size: 0.7rem;
}

/* Quick Links */
.dlr-quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dlr-quick-links li {
  border-bottom: 1px solid var(--dlr-gray-100);
}

.dlr-quick-links li:last-child {
  border-bottom: none;
}

.dlr-quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  text-decoration: none;
  transition: var(--dlr-transition);
}

.dlr-quick-links a:hover {
  padding-left: 8px;
}

.dlr-quick-links__info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dlr-navy);
  margin: 0;
}

.dlr-quick-links__info p {
  font-size: 0.72rem;
  color: var(--dlr-text-muted);
  margin: 2px 0 0 !important;
}

.dlr-quick-links a i.fa-chevron-right {
  color: var(--dlr-gray-400);
  font-size: 0.7rem;
}

/* ============================================================
   RECENT ISSUES SECTION
   ============================================================ */
.dlr-recent-issues {
  margin-bottom: 30px;
}

.dlr-recent-issues__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dlr-issue-card {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius);
  overflow: hidden;
  transition: var(--dlr-transition);
  text-decoration: none;
}

.dlr-issue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dlr-shadow-lg);
  border-color: var(--dlr-blue);
}

.dlr-issue-card__badge {
  background: var(--dlr-success);
  color: var(--dlr-white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  text-transform: uppercase;
  display: inline-block;
  margin: 10px 10px 0;
  border-radius: 3px;
}

.dlr-issue-card__cover {
  padding: 10px;
  text-align: center;
}

.dlr-issue-card__cover img {
  max-width: 100%;
  border-radius: 4px;
}

.dlr-issue-card__cover-placeholder {
  height: 120px;
  background: linear-gradient(135deg, var(--dlr-navy), var(--dlr-navy-light));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dlr-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  padding: 10px;
}

.dlr-issue-card__info {
  padding: 0 12px 12px;
  text-align: center;
}

.dlr-issue-card__title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 4px;
  line-height: 1.3;
}

.dlr-issue-card__meta {
  font-size: 0.7rem;
  color: var(--dlr-text-muted);
}

.dlr-issue-card__btn {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 14px;
  background: var(--dlr-blue);
  color: var(--dlr-white);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--dlr-transition);
}

.dlr-issue-card__btn:hover {
  background: var(--dlr-navy);
}

/* ============================================================
   PAGE HEADER BANNER (inner pages)
   ============================================================ */
.dlr-page-header {
  background: url('../../../../public/banner.webp') no-repeat center center;
  background-size: cover;
  padding: 40px 0 45px;
  position: relative;
  overflow: hidden;
  top: -13px;
}

.dlr-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.dlr-page-header .dlr-container {
  position: relative;
  z-index: 1;
}

.dlr-page-header .dlr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dlr-page-header__content {
  flex: 1;
}

.dlr-page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.dlr-page-header__breadcrumb a {
  color: var(--dlr-navy);
  text-decoration: none;
}

.dlr-page-header__breadcrumb a:hover {
  text-decoration: underline;
}

.dlr-page-header__breadcrumb span {
  color: var(--dlr-gray-700);
}

.dlr-page-header h1 {
  font-family: var(--dlr-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 8px;
}

.dlr-page-header h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--dlr-gold);
  margin-top: 10px;
  border-radius: 2px;
}

.dlr-page-header p {
  font-size: 0.9rem;
  color: var(--dlr-gray-800);
  max-width: 500px;
  line-height: 1.6;
}

.dlr-page-header__image {
  flex: 0 0 200px;
  text-align: right;
}

.dlr-page-header__image-placeholder {
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dlr-page-header__image-placeholder i {
  font-size: 4rem;
  color: var(--dlr-navy);
  opacity: 0.15;
}

/* ============================================================
   CURRENT ISSUE PAGE
   ============================================================ */
.dlr-issue-detail {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.dlr-issue-detail .dlr-container {
  display: grid;
  grid-template-columns: 200px 1fr 250px;
  gap: 24px;
}

.dlr-issue-detail__cover img {
  width: 100%;
  border-radius: var(--dlr-radius);
  box-shadow: var(--dlr-shadow);
}

.dlr-issue-detail__info h2 {
  font-family: var(--dlr-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 6px;
}

.dlr-issue-detail__date {
  font-size: 0.85rem;
  color: var(--dlr-text-muted);
  margin-bottom: 12px;
}

.dlr-issue-detail__desc {
  font-size: 0.88rem;
  color: var(--dlr-text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

.dlr-issue-detail__actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Issue Info Sidebar */
.dlr-issue-info-panel {
  background: var(--dlr-gray-50);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius);
  padding: 20px;
}

.dlr-issue-info-panel h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--dlr-navy);
}

.dlr-issue-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dlr-issue-info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.dlr-issue-info-icon {
  color: var(--dlr-blue);
  font-size: 1.1rem;
  margin-top: 2px;
}

.dlr-issue-info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.dlr-issue-info-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dlr-navy);
}

.dlr-issue-info-value {
  font-size: 0.85rem;
  color: var(--dlr-gray-800);
}

/* Share Buttons */
.dlr-share {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--dlr-gray-200);
}

.dlr-share h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dlr-text-muted);
  margin: 0 0 10px;
}

.dlr-share__buttons {
  display: flex;
  gap: 8px;
}

.dlr-share__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dlr-white);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--dlr-transition);
}

.dlr-share__btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--dlr-shadow);
}

.dlr-share__btn--facebook {
  background: #1877f2;
}

.dlr-share__btn--twitter {
  background: #1da1f2;
}

.dlr-share__btn--linkedin {
  background: #0a66c2;
}

.dlr-share__btn--email {
  background: var(--dlr-success);
}

/* ============================================================
   ARTICLE LIST (Issue TOC)
   ============================================================ */
.dlr-articles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dlr-articles-header h2 {
  font-family: var(--dlr-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0;
}

.dlr-articles-header select {
  padding: 6px 12px;
  border: 1px solid var(--dlr-gray-300);
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--dlr-text);
  font-family: var(--dlr-font);
}

.dlr-article-item {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius);
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--dlr-transition);
}

.dlr-article-item:hover {
  border-color: var(--dlr-blue);
  box-shadow: var(--dlr-shadow-sm);
}

.dlr-article-item__number {
  flex: 0 0 40px;
  height: 40px;
  background: var(--dlr-navy);
  color: var(--dlr-white);
  border-radius: var(--dlr-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dlr-font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.dlr-article-item__content {
  flex: 1;
}

.dlr-article-item__badge {
  display: inline-block;
  background: var(--dlr-success);
  color: var(--dlr-white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.dlr-article-item__title {
  margin: 0 0 6px;
}

.dlr-article-item__title a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dlr-navy);
  text-decoration: none;
  transition: var(--dlr-transition);
  line-height: 1.4;
}

.dlr-article-item__title a:hover {
  color: var(--dlr-blue);
}

.dlr-article-item__authors {
  font-size: 0.82rem;
  color: var(--dlr-text-muted);
  margin-bottom: 4px;
}

.dlr-article-item__meta {
  font-size: 0.78rem;
  color: var(--dlr-gray-400);
  display: flex;
  align-items: center;
  gap: 12px;
}

.dlr-article-item__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-self: center;
}

.dlr-btn--view {
  padding: 8px 16px;
  background: var(--dlr-white);
  color: var(--dlr-navy);
  border: 1px solid var(--dlr-navy);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--dlr-transition);
  white-space: nowrap;
}

.dlr-btn--view:hover {
  background: var(--dlr-navy);
  color: var(--dlr-white);
}

.dlr-btn--download {
  padding: 8px 16px;
  background: var(--dlr-blue);
  color: var(--dlr-white);
  border: none;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--dlr-transition);
  white-space: nowrap;
}

.dlr-btn--download:hover {
  background: var(--dlr-navy);
}

/* ============================================================
   ARCHIVES PAGE
   ============================================================ */
.dlr-archives__content {
  flex: 1;
}

.dlr-archive-year {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.dlr-archive-year__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--dlr-transition);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--dlr-font);
}

.dlr-archive-year__header:hover {
  background: var(--dlr-gray-50);
}

.dlr-archive-year__header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--dlr-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0;
}

.dlr-archive-year__header h3 i {
  color: var(--dlr-gold);
  font-size: 0.9rem;
}

.dlr-archive-year__header .volume-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dlr-text-muted);
}

.dlr-archive-year__header .toggle-icon {
  color: var(--dlr-gray-400);
  transition: var(--dlr-transition);
}

.dlr-archive-year.open .toggle-icon {
  transform: rotate(180deg);
}

.dlr-archive-year__body {
  display: none;
  padding: 0 20px 16px;
  border-top: 1px solid var(--dlr-gray-100);
}

.dlr-archive-year.open .dlr-archive-year__body {
  display: block;
}

.dlr-archive-issue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--dlr-gray-100);
}

.dlr-archive-issue:last-child {
  border-bottom: none;
}

.dlr-archive-issue__info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dlr-navy);
  margin: 0;
}

.dlr-archive-issue__info p {
  font-size: 0.78rem;
  color: var(--dlr-text-muted);
  margin: 2px 0 0;
}

.dlr-archive-issue__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dlr-archive-issue__articles {
  font-size: 0.78rem;
  color: var(--dlr-text-muted);
  font-weight: 500;
}

/* Search Archives Panel */
.dlr-search-panel {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}

.dlr-search-panel__header {
  background: var(--dlr-navy);
  color: var(--dlr-white);
  padding: 12px 24px 12px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dlr-search-panel__body {
  padding: 16px;
}

.dlr-search-panel select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--dlr-gray-300);
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: var(--dlr-font);
  margin-bottom: 10px;
  color: var(--dlr-text);
  appearance: auto;
}

.dlr-search-panel .dlr-btn {
  width: 100%;
  justify-content: center;
}

/* Filter by Year */
.dlr-filter-year {
  margin-bottom: 20px;
}

.dlr-filter-year h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--dlr-navy);
}

.dlr-filter-year__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dlr-filter-year__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.dlr-filter-year__list a {
  font-size: 0.85rem;
  color: var(--dlr-blue);
  text-decoration: none;
  font-weight: 500;
}

.dlr-filter-year__list a:hover {
  text-decoration: underline;
}

.dlr-filter-year__count {
  background: var(--dlr-gray-100);
  color: var(--dlr-text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Archive Info Panel */
.dlr-archive-info {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  overflow: hidden;
}

.dlr-archive-info__header {
  background: var(--dlr-navy);
  color: var(--dlr-white);
  padding: 12px 24px 12px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dlr-archive-info__body {
  padding: 16px;
}

.dlr-archive-info__item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.dlr-archive-info__item:last-child {
  margin-bottom: 0;
}

.dlr-archive-info__item i {
  color: var(--dlr-blue);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.dlr-archive-info__item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 3px;
}

.dlr-archive-info__item p {
  font-size: 0.78rem;
  color: var(--dlr-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Contact Us Banner */
.dlr-contact-banner {
  background: var(--dlr-gray-50);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.dlr-contact-banner h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 4px;
}

.dlr-contact-banner p {
  font-size: 0.82rem;
  color: var(--dlr-text-muted);
  margin: 0;
}

/* ============================================================
   ARTICLE DETAILS PAGE
   ============================================================ */
.dlr-article-detail {
  margin-bottom: 24px;
}

.dlr-article-detail__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.dlr-article-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dlr-article-badge--open {
  background: var(--dlr-success);
  color: var(--dlr-white);
}

.dlr-article-badge--type {
  background: var(--dlr-navy);
  color: var(--dlr-white);
}

.dlr-article-detail h1 {
  font-family: var(--dlr-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dlr-navy);
  line-height: 1.3;
  margin: 0 0 14px;
}

.dlr-article-detail__authors-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.dlr-article-detail__author {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  color: var(--dlr-navy);
}

.dlr-article-detail__author i {
  color: var(--dlr-blue);
  font-size: 0.8rem;
}

.dlr-article-detail__author sup {
  color: var(--dlr-blue);
  font-weight: 700;
}

.dlr-article-detail__affiliations {
  font-size: 0.78rem;
  color: var(--dlr-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.dlr-article-detail__meta-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--dlr-text-muted);
  padding: 10px 0;
  border-top: 1px solid var(--dlr-gray-200);
  border-bottom: 1px solid var(--dlr-gray-200);
  margin-bottom: 20px;
}

.dlr-article-detail__meta-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dlr-article-detail__meta-row i {
  color: var(--dlr-blue);
}

/* Article Tabs */
.dlr-article-tabs {
  margin-bottom: 20px;
}

.dlr-article-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--dlr-gray-200);
  list-style: none;
  padding: 0;
  margin: 0;
}

.dlr-article-tabs__nav li {
  margin-bottom: -2px;
}

.dlr-article-tabs__nav a,
.dlr-article-tabs__nav button {
  display: block;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dlr-text-muted);
  text-decoration: none;
  border: 2px solid transparent;
  border-bottom: none;
  border-radius: var(--dlr-radius) var(--dlr-radius) 0 0;
  transition: var(--dlr-transition);
  background: none;
  cursor: pointer;
  font-family: var(--dlr-font);
}

.dlr-article-tabs__nav a:hover,
.dlr-article-tabs__nav button:hover {
  color: var(--dlr-navy);
  background: var(--dlr-gray-50);
}

.dlr-article-tabs__nav .active a,
.dlr-article-tabs__nav .active button {
  color: var(--dlr-white);
  background: var(--dlr-navy);
  border-color: var(--dlr-navy);
}

.dlr-article-tabs__content {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-top: none;
  border-radius: 0 0 var(--dlr-radius) var(--dlr-radius);
  padding: 24px;
}

.dlr-tab-pane {
  display: none;
}

.dlr-tab-pane.active {
  display: block;
}

.dlr-tab-pane h3 {
  font-family: var(--dlr-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 12px;
}

.dlr-tab-pane p {
  font-size: 0.9rem;
  color: var(--dlr-text-light);
  line-height: 1.8;
}

/* Keywords */
.dlr-keywords {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--dlr-gray-200);
}

.dlr-keywords strong {
  color: var(--dlr-navy);
  font-size: 0.85rem;
}

.dlr-keywords span {
  font-size: 0.85rem;
  color: var(--dlr-text-light);
  font-style: italic;
}

/* Citation Box */
.dlr-citation-box {
  background: var(--dlr-gray-50);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius);
  padding: 16px;
  margin: 20px 0;
}

.dlr-citation-box h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 10px;
}

.dlr-citation-box__text {
  font-size: 0.82rem;
  color: var(--dlr-text-light);
  line-height: 1.6;
  margin-bottom: 10px;
}

.dlr-citation-box__text a {
  color: var(--dlr-blue);
  text-decoration: none;
}

.dlr-citation-box .dlr-btn {
  font-size: 0.78rem;
}

/* Article Navigation */
.dlr-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--dlr-gray-200);
  border-bottom: 1px solid var(--dlr-gray-200);
}

.dlr-article-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--dlr-blue);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--dlr-transition);
}

.dlr-article-nav a:hover {
  color: var(--dlr-navy);
}

.dlr-article-nav__next {
  text-align: right;
  justify-content: flex-end;
}

/* Author Cards */
.dlr-authors-section h2 {
  font-family: var(--dlr-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 16px;
}

.dlr-author-card {
  background: var(--dlr-gray-50);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
}

.dlr-author-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dlr-navy);
  color: var(--dlr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.dlr-author-card__info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 2px;
}

.dlr-author-card__info h4 span {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--dlr-text-muted);
}

.dlr-author-card__affiliation {
  font-size: 0.78rem;
  color: var(--dlr-text-muted);
  margin: 0 0 6px;
}

.dlr-author-card__links {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
}

.dlr-author-card__links a {
  color: var(--dlr-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dlr-author-card__links a:hover {
  text-decoration: underline;
}

/* Download & Tools Sidebar */
.dlr-tools-panel {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}

.dlr-tools-panel__header {
  background: var(--dlr-navy);
  color: var(--dlr-white);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

.dlr-tools-panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dlr-tools-panel__list li {
  border-bottom: 1px solid var(--dlr-gray-100);
}

.dlr-tools-panel__list li:last-child {
  border-bottom: none;
}

.dlr-tools-panel__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--dlr-navy);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--dlr-transition);
}

.dlr-tools-panel__list a:hover {
  background: var(--dlr-blue-light);
  color: var(--dlr-blue);
}

.dlr-tools-panel__list a i {
  color: var(--dlr-blue);
  width: 20px;
  text-align: center;
}

/* Article Info Panel */
.dlr-article-info-panel {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}

.dlr-article-info-panel__header {
  background: var(--dlr-navy);
  color: var(--dlr-white);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

.dlr-article-info-panel__body {
  padding: 16px;
}

.dlr-article-info-panel dl {
  margin: 0;
}

.dlr-article-info-panel dt {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dlr-text-muted);
  text-transform: uppercase;
  margin-top: 10px;
}

.dlr-article-info-panel dt:first-child {
  margin-top: 0;
}

.dlr-article-info-panel dd {
  font-size: 0.85rem;
  color: var(--dlr-navy);
  font-weight: 500;
  margin: 2px 0 0;
}

/* Related Articles */
.dlr-related-articles {
  background: var(--dlr-white);
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  overflow: hidden;
}

.dlr-related-articles__header {
  background: var(--dlr-navy);
  color: var(--dlr-white);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

.dlr-related-articles__body {
  padding: 16px;
}

.dlr-related-article {
  padding: 10px 0;
  border-bottom: 1px solid var(--dlr-gray-100);
}

.dlr-related-article:last-child {
  border-bottom: none;
}

.dlr-related-article a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dlr-blue);
  text-decoration: none;
  line-height: 1.4;
  display: block;
  margin-bottom: 3px;
}

.dlr-related-article a:hover {
  color: var(--dlr-navy);
}

.dlr-related-article p {
  font-size: 0.72rem;
  color: var(--dlr-text-muted);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.dlr-footer {
  background: var(--dlr-navy-dark);
  color: var(--dlr-white);
  padding: 50px 0 0;
}

.dlr-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dlr-footer__brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dlr-footer__brand-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--dlr-navy-light), var(--dlr-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dlr-white);
  font-size: 0.5rem;
  font-weight: 700;
  text-align: center;
  flex-shrink: 0;
  border: 2px solid var(--dlr-gold);
}

.dlr-footer__brand-info h3 {
  font-family: var(--dlr-font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.dlr-footer__brand-info p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

.dlr-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.dlr-footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dlr-white);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--dlr-transition);
}

.dlr-footer__social a:hover {
  background: var(--dlr-blue);
  transform: translateY(-2px);
}

.dlr-footer__column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.dlr-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dlr-footer__links li {
  margin-bottom: 8px;
}

.dlr-footer__links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.82rem;
  transition: var(--dlr-transition);
}

.dlr-footer__links a:hover {
  color: var(--dlr-white);
  padding-left: 4px;
}

.dlr-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.dlr-footer__contact-item i {
  color: var(--dlr-gold);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.dlr-footer__contact-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.dlr-footer__contact-item a:hover {
  color: var(--dlr-white);
}

.dlr-footer__bottom {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.dlr-footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.dlr-footer__heart {
  color: #ef4444;
  margin: 0 4px;
}

/* ============================================================
   LOGIN / REGISTER / FORGOT PASSWORD PAGES
   ============================================================ */
.dlr-auth-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--dlr-gray-100), #dce6f0);
}

.dlr-auth-card {
  background: var(--dlr-white);
  border-radius: var(--dlr-radius-xl);
  box-shadow: var(--dlr-shadow-xl);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}

.dlr-auth-card__accent {
  height: 5px;
  background: linear-gradient(90deg, var(--dlr-navy), var(--dlr-blue), var(--dlr-gold));
}

.dlr-auth-card__header {
  text-align: center;
  padding: 0px 30px 0;
}

.dlr-auth-card__logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--dlr-navy), var(--dlr-navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dlr-white);
  font-size: 1.5rem;
  margin: 0 auto 14px;
  border: 3px solid var(--dlr-gold);
}

.dlr-auth-card__header h1 {
  font-family: var(--dlr-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 6px;
}

.dlr-auth-card__header p {
  font-size: 0.88rem;
  color: var(--dlr-text-muted);
  margin: 0;
}

.dlr-auth-card__body {
  padding: 24px 30px 30px;
}

/* Override default OJS form styles */
.dlr-auth-card .cmp_form .fields {
  margin: 0;
}

.dlr-auth-card .cmp_form label .label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dlr-navy);
  margin-bottom: 4px;
  display: block;
}

.dlr-auth-card .cmp_form input[type="text"],
.dlr-auth-card .cmp_form input[type="email"],
.dlr-auth-card .cmp_form input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--dlr-gray-300);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--dlr-font);
  transition: var(--dlr-transition);
  margin-bottom: 14px;
}

.dlr-auth-card .cmp_form input:focus {
  outline: none;
  border-color: var(--dlr-blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

.dlr-auth-card .cmp_form .remember {
  margin-bottom: 14px;
}

.dlr-auth-card .cmp_form .remember label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--dlr-text-muted);
  cursor: pointer;
}

.dlr-auth-card .cmp_form .password label a {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--dlr-blue);
  text-decoration: none;
}

.dlr-auth-card .cmp_form .password label a:hover {
  text-decoration: underline;
}

.dlr-auth-card .cmp_form .buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.dlr-auth-card .cmp_form .submit {
  width: 100%;
  padding: 12px;
  background: var(--dlr-navy);
  color: var(--dlr-white);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--dlr-transition);
  font-family: var(--dlr-font);
}

.dlr-auth-card .cmp_form .submit:hover {
  background: var(--dlr-navy-light);
  transform: translateY(-1px);
  box-shadow: var(--dlr-shadow);
}

.dlr-auth-card .cmp_form .register,
.dlr-auth-card .cmp_form .login {
  text-align: center;
  display: block;
  color: var(--dlr-blue);
  font-size: 0.88rem;
  text-decoration: none;
  font-weight: 500;
}

.dlr-auth-card .cmp_form .register:hover,
.dlr-auth-card .cmp_form .login:hover {
  text-decoration: underline;
}

.dlr-auth-card .pkp_form_error {
  background: #fef2f2;
  color: var(--dlr-danger);
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Register page overrides */
.dlr-auth-card--register {
  max-width: 600px;
}

.dlr-auth-card .cmp_form.register fieldset {
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius);
  padding: 16px;
  margin: 14px 0;
}

.dlr-auth-card .cmp_form.register fieldset legend {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dlr-navy);
  padding: 0 8px;
}

/* ============================================================
   HIDE DEFAULT OJS ELEMENTS WE'RE REPLACING
   ============================================================ */
.pkp_structure_head .pkp_head_wrapper {
  display: none !important;
}

.pkp_structure_content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pkp_structure_main {
  padding: 0 !important;
  min-height: auto !important;
}

.pkp_structure_sidebar {
  display: none !important;
}

.pkp_structure_footer_wrapper {
  display: none !important;
}

/* Reset breadcrumbs */
.pkp_breadcrumb {
  display: none !important;
}

/* ============================================================
   OVERRIDE DEFAULT OJS PAGE STYLES
   ============================================================ */
.page {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page>h1 {
  display: none !important;
}

.page_index_journal {
  padding: 0 !important;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Large Desktop */
@media (max-width: 1200px) {
  .dlr-main-layout .dlr-container {
    grid-template-columns: 220px 1fr 260px;
    gap: 20px;
  }

  .dlr-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .dlr-hero__title {
    font-size: 2.4rem;
  }
}

.dlr-mobile-only {
  display: none !important;
}

/* Desktop */
@media (max-width: 992px) {
  .dlr-main-layout .dlr-container {
    grid-template-columns: 1fr;
  }

  .dlr-top-cols {
    flex-direction: column;
    gap: 20px;
  }

  .dlr-hero--bg {
    background-position: left center;
  }

  .dlr-right-panel {
    display: none !important;
  }

  .dlr-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--dlr-white);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: var(--dlr-shadow-xl);
    padding: 20px;
  }

  .dlr-sidebar.open {
    display: block;
  }

  .dlr-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .dlr-sidebar-overlay.open {
    display: block;
  }

  .dlr-sidebar-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--dlr-navy);
    color: var(--dlr-white);
    border: none;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
  }

  .dlr-right-panel {
    order: 3;
  }

  .dlr-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dlr-hero .dlr-container {
    flex-direction: column;
  }

  .dlr-hero__image {
    flex: auto;
  }

  .dlr-hero__title {
    font-size: 2rem;
  }

  .dlr-issue-detail .dlr-container {
    grid-template-columns: 1fr;
  }

  .dlr-issue-detail__cover {
    text-align: center;
  }

  .dlr-issue-detail__cover img {
    max-width: 200px;
  }

  .dlr-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dlr-announcement-bar .dlr-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .dlr-announcement-bar__text {
    width: 100%;
  }

  .dlr-announcement-bar__search {
    display: none !important;
  }

  .dlr-announcement-bar__links {
    display: none;
  }

  .dlr-header__right {
    display: none !important;
  }

  .dlr-mobile-only {
    display: block !important;
  }

  .dlr-header__brand {
    width: 100%;
    justify-content: space-between;
  }

  .dlr-mobile-toggle {
    display: block;
    order: 3;
    margin-left: auto;
  }

  .dlr-header__brand-link {
    order: 1;
  }

  .dlr-header__title-area {
    order: 2;
  }

  .dlr-nav__list-wrapper::before,
  .dlr-nav__list-wrapper::after {
    display: none;
  }

  .dlr-nav__list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: var(--dlr-navy);
    z-index: 100;
    box-shadow: var(--dlr-shadow-lg);
  }

  .dlr-nav__list.open {
    display: flex;
  }

  .dlr-nav__link {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dlr-mobile-toggle {
    display: block;
  }

  .dlr-header__login {
    display: none;
  }

  .dlr-header__register {
    display: none;
  }

  .dlr-about__features {
    grid-template-columns: 1fr;
  }

  .dlr-recent-issues__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dlr-article-item {
    flex-direction: column;
  }

  .dlr-article-item__actions {
    align-self: flex-start;
  }

  .dlr-article-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dlr-article-detail__authors-list {
    flex-direction: column;
    gap: 8px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .dlr-container {
    padding: 0 16px;
  }

  .dlr-hero {
    padding: 30px 0 40px;
  }

  .dlr-hero__title {
    font-size: 1.7rem;
  }

  .dlr-hero__image-placeholder {
    width: 280px;
    height: 200px;
  }

  .dlr-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .dlr-stats__card {
    padding: 14px;
  }

  .dlr-stats__number {
    font-size: 1.4rem;
  }

  .dlr-latest-issue__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dlr-latest-issue__cover {
    flex: auto;
  }

  .dlr-latest-issue__topics {
    grid-template-columns: 1fr;
  }

  .dlr-latest-issue__actions {
    justify-content: center;
  }

  /* .dlr-page-header .dlr-container {
    flex-direction: column;
    text-align: center;
  } */

  /* .dlr-page-header h1::after {
    margin: 10px auto 0;
  } */

  .dlr-page-header__image {
    display: none;
  }

  .dlr-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .dlr-footer__brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dlr-footer__social {
    justify-content: center;
    width: 100%;
  }

  .dlr-footer__links:last-child {
    grid-column: 1 / -1;
  }

  .dlr-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .dlr-about__content {
    grid-template-columns: 1fr;
  }

  .dlr-contact-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .dlr-article-detail h1 {
    font-size: 1.3rem;
  }

  .dlr-article-tabs__nav {
    flex-wrap: wrap;
  }

  .dlr-article-tabs__nav a,
  .dlr-article-tabs__nav button {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .dlr-auth-card {
    margin: 20px;
  }

  .dlr-auth-card__body {
    padding: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .dlr-hero__title {
    font-size: 1.4rem;
  }

  .dlr-hero__desc {
    font-size: 0.88rem;
  }

  .dlr-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dlr-hero__actions .dlr-btn {
    flex: 1;
    justify-content: center;
  }

  .dlr-hero__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }

  .dlr-hero__image-placeholder {
    width: 100%;
    max-width: 280px;
    height: 180px;
  }

  .dlr-stats__grid {
    grid-template-columns: 1fr;
  }

  .dlr-recent-issues__grid {
    grid-template-columns: 1fr;
  }

  .dlr-header .dlr-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .dlr-header__brand {
    width: 100%;
    justify-content: space-between;
  }

  .dlr-mobile-toggle {
    display: block;
  }

  .dlr-header__title {
    font-size: 1.2rem;
  }

  .dlr-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .dlr-article-item__number {
    flex: 0 0 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .dlr-article-item__actions {
    flex-direction: column;
    width: 100%;
  }

  .dlr-btn--view,
  .dlr-btn--download {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .dlr-page-header h1 {
    font-size: 1.5rem;
  }

  .dlr-article-detail h1 {
    font-size: 1.15rem;
  }

  .dlr-article-detail__meta-row {
    flex-direction: column;
    gap: 6px;
  }

  .dlr-author-card {
    flex-direction: column;
  }

  .dlr-auth-card {
    margin: 10px;
    border-radius: var(--dlr-radius-lg);
  }

  .dlr-auth-card__header {
    padding: 20px 20px 0;
  }

  .dlr-auth-card__body {
    padding: 16px 20px 20px;
  }

  .dlr-footer__social {
    justify-content: center;
  }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.dlr-animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.dlr-stats__card {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.dlr-stats__card:nth-child(1) {
  animation-delay: 0.1s;
}

.dlr-stats__card:nth-child(2) {
  animation-delay: 0.2s;
}

.dlr-stats__card:nth-child(3) {
  animation-delay: 0.3s;
}

.dlr-stats__card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Smooth transitions for all interactive elements */
a,
button,
input,
select {
  transition: var(--dlr-transition);
}

/* Focus visible styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--dlr-blue);
  outline-offset: 2px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dlr-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--dlr-gray-400);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dlr-gray-500);
}

/* Print styles */
@media print {

  .dlr-announcement-bar,
  .dlr-header,
  .dlr-nav,
  .dlr-sidebar {
    display: none !important;
  }
}

/* Dropdown Menu Styles */
.dlr-nav__item {
  position: relative;
}

.dlr-nav__item:hover .dlr-nav__dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dlr-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  z-index: 1000;
  display: none;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-top: 3px solid var(--dlr-gold);
}

.dlr-nav__dropdown-link {
  display: block;
  padding: 10px 20px;
  color: var(--dlr-navy) !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.dlr-nav__dropdown-link:hover {
  background: var(--dlr-gray-100);
  color: var(--dlr-blue) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .dlr-nav__dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    background: rgba(0, 0, 0, 0.15);
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 0;
  }

  .dlr-nav__item:hover .dlr-nav__dropdown {
    display: block;
  }

  .dlr-nav__dropdown-link {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 12px 20px 12px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dlr-nav__dropdown-link:hover {
    background: transparent;
    color: white !important;
  }
}

/* About Pages Layout & Typography */
.dlr-about-section {
  margin-bottom: 40px;
  background: white;
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  padding: 35px;
  box-shadow: var(--dlr-shadow-sm);
}

.dlr-section-heading {
  color: var(--dlr-navy);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--dlr-gray-200);
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dlr-section-heading i {
  color: var(--dlr-blue);
}

.dlr-section-text {
  color: var(--dlr-text);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1rem;
}

.dlr-section-list {
  color: var(--dlr-text);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1rem;
  padding-left: 20px;
}

.dlr-section-list li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .dlr-about-section {
    padding: 20px;
  }

  .dlr-section-heading {
    font-size: 1.25rem;
  }
}

/* Contact Page */
.dlr-contact-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  align-items: start;
}

.dlr-contact-info {
  background: white;
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  padding: 30px;
  box-shadow: var(--dlr-shadow-sm);
}

.dlr-contact-info__heading,
.dlr-contact-form__heading {
  color: var(--dlr-navy);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 25px 0;
  position: relative;
  padding-bottom: 10px;
}

.dlr-contact-info__heading::after,
.dlr-contact-form__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--dlr-gold);
}

.dlr-contact-info__item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.dlr-contact-info__item:last-child {
  margin-bottom: 0;
}

.dlr-contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dlr-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dlr-blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dlr-contact-info__content h4 {
  margin: 0 0 5px 0;
  color: var(--dlr-navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.dlr-contact-info__content p {
  margin: 0;
  color: var(--dlr-text);
  font-size: 0.85rem;
  line-height: 1.6;
}

.dlr-contact-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.dlr-contact-social a {
  color: var(--dlr-blue);
  font-size: 1.1rem;
  transition: var(--dlr-transition);
}

.dlr-contact-social a:hover {
  color: var(--dlr-navy);
}

.dlr-contact-form {
  background: white;
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  padding: 30px;
  box-shadow: var(--dlr-shadow-sm);
}

.dlr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.dlr-form-group {
  margin-bottom: 20px;
}

.dlr-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dlr-navy);
  margin-bottom: 8px;
}

.dlr-form-group label span {
  color: var(--dlr-danger);
}

.dlr-form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--dlr-gray-300);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: var(--dlr-font);
  transition: var(--dlr-transition);
}

.dlr-form-control:focus {
  outline: none;
  border-color: var(--dlr-blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

textarea.dlr-form-control {
  min-height: 150px;
  resize: vertical;
}

.dlr-captcha-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.dlr-captcha-image {
  background: #f8f9fa;
  border: 1px dashed var(--dlr-gray-300);
  padding: 8px 15px;
  font-family: monospace;
  font-size: 1.2rem;
  letter-spacing: 5px;
  border-radius: 4px;
  color: var(--dlr-navy);
}

.dlr-captcha-refresh {
  color: var(--dlr-blue);
  cursor: pointer;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .dlr-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .dlr-form-row {
    grid-template-columns: 1fr;
  }
}

/* Auth Pages Layout */
.dlr-auth-layout {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f0fe 0%, #c4d5e8 50%, #1565C0 100%);
  position: relative;
  top: -13px;
  margin-bottom: -13px;
}

.dlr-auth-layout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('http://localhost/dlr-journal/public/auth.webp') no-repeat left center;
  background-size: cover;
  opacity: 0.15;
  z-index: 1;
}

.dlr-auth-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.dlr-auth-logo-wrapper {
  margin-bottom: 20px;
}

.dlr-auth-logo-wrapper img {
  max-height: 120px;
}

.dlr-auth-title {
  font-family: var(--dlr-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dlr-navy);
  margin: 0 0 10px 0;
}

.dlr-auth-subtitle {
  font-size: 1.1rem;
  color: var(--dlr-text-muted);
  font-weight: 500;
  margin-bottom: 40px;
}

.dlr-auth-hero-img {
  max-width: 100%;
  width: 400px;
  height: auto;
}

.dlr-auth-register-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--dlr-radius-lg);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  box-shadow: var(--dlr-shadow-sm);
  text-align: left;
  max-width: 400px;
}

.dlr-auth-register-box i {
  font-size: 2rem;
  color: var(--dlr-gold);
}

.dlr-auth-register-box h4 {
  margin: 0 0 5px 0;
  color: var(--dlr-navy);
  font-size: 1rem;
}

.dlr-auth-register-box p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--dlr-text);
}

.dlr-auth-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  position: relative;
  z-index: 2;
}

.dlr-auth-card {
  background: var(--dlr-white);
  border-radius: var(--dlr-radius-xl);
  padding: 22px;
  width: 100%;
  max-width: 500px;
  box-shadow: var(--dlr-shadow-xl);
}

.dlr-auth-card--large {
  max-width: 800px;
}

.dlr-auth-card__header {
  text-align: center;
  margin-bottom: 15px;
}

.dlr-auth-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dlr-blue-light);
  color: var(--dlr-navy);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.dlr-auth-card__title {
  font-family: var(--dlr-font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 10px 0;
  position: relative;
  padding-bottom: 10px;
}

.dlr-auth-card__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--dlr-gold);
}

.dlr-auth-card__desc {
  color: var(--dlr-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.dlr-auth-form .dlr-form-group {
  margin-bottom: 10px;
}

.dlr-auth-form .dlr-form-control-wrapper {
  position: relative;
}

.dlr-auth-form .dlr-form-control-wrapper i.icon-left {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dlr-gray-400);
}

.dlr-auth-form .dlr-form-control-wrapper i.icon-right {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dlr-gray-400);
  cursor: pointer;
}

.dlr-auth-form .dlr-form-control-wrapper .dlr-form-control {
  padding-left: 45px;
}

.dlr-auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dlr-auth-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dlr-navy);
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dlr-auth-section-title i {
  color: var(--dlr-gray-500);
}

.dlr-auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.dlr-auth-actions label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dlr-text);
  cursor: pointer;
}

.dlr-auth-actions a {
  color: var(--dlr-blue);
  text-decoration: none;
}

.dlr-auth-btn {
  width: 100%;
  padding: 12px;
  background: var(--dlr-navy);
  color: var(--dlr-white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--dlr-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dlr-auth-btn:hover {
  background: var(--dlr-navy-light);
}

.dlr-auth-divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.dlr-auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--dlr-gray-200);
  z-index: 1;
}

.dlr-auth-divider span {
  background: var(--dlr-white);
  padding: 0 15px;
  color: var(--dlr-gray-400);
  font-size: 0.8rem;
  position: relative;
  z-index: 2;
}

.dlr-auth-btn-outline {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--dlr-blue);
  border: 1px solid var(--dlr-blue);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--dlr-transition);
}

.dlr-auth-btn-outline:hover {
  background: var(--dlr-blue-light);
}

@media (max-width: 992px) {
  .dlr-auth-layout {
    flex-direction: column;
  }

  .dlr-auth-left {
    padding: 40px 20px;
  }

  .dlr-auth-right {
    padding: 40px 20px;
    background: #f0f2f5;
  }
}

@media (max-width: 768px) {
  .dlr-auth-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Editorial Team Page */
.dlr-editorial-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 30px;
  margin-bottom: 50px;
}

.dlr-editorial-sidebar {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dlr-editorial-nav-box {
  background: white;
  border-radius: var(--dlr-radius-lg);
  border: 1px solid var(--dlr-gray-200);
  overflow: hidden;
  box-shadow: var(--dlr-shadow-sm);
}

.dlr-editorial-nav-header {
  background: var(--dlr-navy);
  color: white;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

.dlr-editorial-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dlr-editorial-nav li {
  border-bottom: 1px solid var(--dlr-gray-100);
}

.dlr-editorial-nav li:last-child {
  border-bottom: none;
}

.dlr-editorial-nav a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: var(--dlr-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--dlr-transition);
}

.dlr-editorial-nav a i {
  width: 24px;
  color: var(--dlr-gray-400);
  transition: var(--dlr-transition);
}

.dlr-editorial-nav a .arrow {
  margin-left: auto;
  font-size: 0.8rem;
  opacity: 0;
}

.dlr-editorial-nav li:hover a,
.dlr-editorial-nav li.active a {
  background: var(--dlr-blue-light);
  color: var(--dlr-navy);
}

.dlr-editorial-nav li:hover a i,
.dlr-editorial-nav li.active a i {
  color: var(--dlr-blue);
}

.dlr-editorial-nav li.active a .arrow {
  opacity: 1;
}

.dlr-join-box {
  background: var(--dlr-blue-light);
  border-radius: var(--dlr-radius-lg);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--dlr-gray-200);
}

.dlr-join-icon {
  width: 60px;
  height: 60px;
  background: var(--dlr-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 15px;
}

.dlr-join-box h4 {
  color: var(--dlr-navy);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.dlr-join-box p {
  color: var(--dlr-text);
  font-size: 0.85rem;
  margin: 0 0 20px;
  line-height: 1.5;
}

.dlr-editorial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.dlr-editorial-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.dlr-editorial-section-title i {
  color: var(--dlr-gold);
  font-size: 1.2rem;
}

.dlr-editorial-section-title h3 {
  margin: 0;
  color: var(--dlr-navy);
  font-size: 1.3rem;
  font-weight: 700;
}

.dlr-editorial-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 35px;
  width: 40px;
  height: 3px;
  background: var(--dlr-gold);
}

.dlr-editor-card {
  background: white;
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  padding: 25px;
  box-shadow: var(--dlr-shadow-sm);
  display: flex;
  align-items: center;
  gap: 25px;
}

.dlr-editor-card__photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--dlr-gray-100);
}

.dlr-editor-card__info {
  flex: 1;
}

.dlr-editor-card__info h4 {
  margin: 0 0 5px;
  color: var(--dlr-navy);
  font-size: 1.2rem;
  font-weight: 700;
}

.dlr-editor-card__role {
  display: block;
  color: var(--dlr-gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.dlr-editor-card__uni {
  display: block;
  color: var(--dlr-blue);
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.dlr-editor-card__info p {
  margin: 0;
  color: var(--dlr-text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.dlr-editor-card__actions {
  display: flex;
  gap: 10px;
  align-self: flex-end;
}

.dlr-editor-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--dlr-blue);
  color: var(--dlr-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--dlr-transition);
}

.dlr-editor-icon:hover {
  background: var(--dlr-blue);
  color: white;
}

.dlr-editor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.dlr-editor-grid-card {
  background: white;
  border: 1px solid var(--dlr-gray-200);
  border-radius: var(--dlr-radius-lg);
  padding: 20px;
  box-shadow: var(--dlr-shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.dlr-editor-grid-card__header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.dlr-editor-grid-card__header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dlr-gray-100);
}

.dlr-editor-grid-card__name {
  flex: 1;
}

.dlr-editor-grid-card__name h4 {
  margin: 0 0 5px;
  color: var(--dlr-navy);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.dlr-editor-grid-card__name span {
  display: block;
  color: var(--dlr-text-muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.dlr-editor-grid-card__actions {
  display: flex;
  justify-content: center;
  margin-top: auto;
  border-top: 1px solid var(--dlr-gray-100);
  padding-top: 15px;
}

@media (max-width: 992px) {
  .dlr-editorial-layout {
    flex-direction: column;
  }

  .dlr-editorial-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .dlr-editor-card {
    flex-direction: column;
    text-align: center;
  }

  .dlr-editor-card__actions {
    align-self: center;
    margin-top: 15px;
  }
}

/* Article Page Specific Layout */
.dlr-main-layout .dlr-container.dlr-article-layout {
  grid-template-columns: 240px 1fr 300px;
}

@media (max-width: 1200px) {
  .dlr-main-layout .dlr-container.dlr-article-layout {
    grid-template-columns: 220px 1fr 260px;
  }
}

@media (max-width: 992px) {
  .dlr-main-layout .dlr-container.dlr-article-layout {
    grid-template-columns: 1fr;
  }
}

/* Article Information Widget */
.dlr-article-info-widget {
  border: 1px solid var(--dlr-gray-200);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.dlr-article-info-widget .dlr-widget__header {
  background: white;
  padding: 15px 20px;
  border-bottom: 1px solid var(--dlr-gray-200);
  font-weight: 700;
  color: var(--dlr-navy);
  font-size: 1.1rem;
}

.dlr-article-info-widget .dlr-widget__body {
  background: white;
  padding: 20px;
}

.dlr-article-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dlr-article-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.dlr-article-info-item .dlr-info-icon {
  color: var(--dlr-blue);
  font-size: 1.2rem;
  margin-top: 2px;
}

.dlr-info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.dlr-info-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dlr-navy);
}

.dlr-info-value {
  font-size: 0.95rem;
  color: var(--dlr-gray-800);
}

.dlr-article-info-item--license .dlr-info-content {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.dlr-article-info-item--license .dlr-info-value {
  margin-bottom: 6px;
}

.dlr-license-badge {
  height: 25px;
}