:root {
  --psr-primary: var(--bs-primary, #0c7c59);
  --psr-secondary: var(--bs-primary, #0c7c59);
  --psr-dark: #0f172a;
  --psr-muted: #64748b;
  --psr-light: #f8fafc;
}

.psr-logo {
  height: 42px;
  width: auto;
}

.psr-logo-text {
  font-weight: 700;
  font-size: 20px;
  margin-left: 10px;
  color: #111827;
}

.footer .psr-logo-text {
  color: #fff;
}

.psr-footer-logo {
  height: 46px;
  width: auto;
}

.psr-hero {
  position: relative;
  padding: 160px 0 110px;
  color: #fff;
  overflow: hidden;
}

.psr-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.psr-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: psrHeroSlide 54s infinite;
}

.psr-hero-slides--manual .psr-hero-slide {
  animation: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.psr-hero-slides--manual .psr-hero-slide.is-active {
  opacity: 1;
}

.psr-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.50;
  transform: scale(1.03);
}

.psr-hero .container {
  position: relative;
  z-index: 2;
}

.psr-hero::before,
.psr-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

.psr-hero::before {
  background: radial-gradient(circle, rgba(12, 124, 89, 0.6), transparent 70%);
  top: 40px;
  right: 10%;
  animation: floatGlow 8s ease-in-out infinite;
}

.psr-hero::after {
  background: radial-gradient(circle, rgba(12, 124, 89, 0.6), transparent 70%);
  bottom: 60px;
  left: 5%;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

.psr-hero .bg-img img {
  object-position: center;
}

@keyframes psrHeroSlide {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  9% {
    opacity: 1;
  }
  11% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .psr-hero-slide {
    animation: none;
    opacity: 0;
  }

  .psr-hero-slide:first-child {
    opacity: 1;
  }
}

.psr-hero-content h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.psr-hero-tag {
  display: inline-flex;

  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
    background: white;
    color : rgba(15, 23, 42, 0.85);
  font-size: 12px;
    font-weight: bolder;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
#text-dark{
    color : rgba(15, 23, 42, 0.85);
}
.psr-hero-content p {
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 30px;
}

.psr-hero-card {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
}

.psr-hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: #e2e8f0;
}

.psr-hero-card h4 {
  color: #fff;
  margin-bottom: 20px;
}

.psr-hero-stats {
  display: grid;
  gap: 16px;
}

.psr-stat-item {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.psr-scroll-hint {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #f8fafc;
  opacity: 0.8;
}

.psr-scroll-hint i {
  animation: bounceHint 2s infinite;
}

.psr-stat-number {
  font-size: 24px;
  font-weight: 700;
}

.psr-stat-label {
  font-size: 14px;
  color: #e2e8f0;
}

.psr-section {
  padding: 90px 0;
}

.psr-section-desc {
  margin-top: 10px;
  color: var(--psr-muted);
}

.psr-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
}

.psr-section-subtitle {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--psr-secondary);
  font-weight: 600;
  margin-bottom: 8px;
}

.psr-publication-card,
.psr-domain-card,
.psr-info-card,
.psr-lab-card {
    cursor:pointer;
  background: #fff;

  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  margin-bottom: 24px;
  height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.psr-domain-card {
  display: flex;
  flex-direction: column;
}

.psr-domains-section .psr-domain-card {
  min-height: 300px;
  max-height: 300px;
}

.psr-publications-section .psr-publication-card {
  min-height: 360px;
}

@media (max-width: 575.98px) {
  .psr-domains-section .psr-domain-card {
    min-height: 280px;
    max-height: 280px;
  }

  .psr-publications-section .psr-publication-card {
    min-height: 320px;
  }
}

.psr-publication-card::after,
.psr-domain-card::after,
.psr-info-card::after,
.psr-lab-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(12, 124, 89, 0.15), transparent 70%);
  top: -40px;
  right: -40px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.psr-publication-card:hover,
.psr-domain-card:hover,
.psr-info-card:hover,
.psr-lab-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 40px rgba(15, 23, 42, 0.14);
}

.psr-publication-card:hover::after,
.psr-domain-card:hover::after,
.psr-info-card:hover::after,
.psr-lab-card:hover::after {
  opacity: 1;
}

.psr-publication-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--psr-muted);
}

.psr-badge {
  background: rgba(12, 124, 89, 0.12);
  color: var(--psr-primary);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.psr-publication-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--psr-dark);
  margin-bottom: 10px;
}

.psr-publications-section .psr-publication-title,
.psr-publications-section .psr-publication-authors,
.psr-publications-section .psr-publication-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.psr-publications-section .psr-publication-title {
  -webkit-line-clamp: 2;
  min-height: 46px;
  transition: color 0.3s linear;
}

.psr-publication-authors {
  font-size: 14px;
  color: var(--psr-muted);
  margin-bottom: 12px;
}

.psr-publications-section .psr-publication-authors {
  -webkit-line-clamp: 2;
  min-height: 40px;
}

.psr-publication-excerpt {
  font-size: 14px;
  color: #334155;
  margin-bottom: 16px;
}

.psr-publications-section .psr-publication-excerpt {
  -webkit-line-clamp: 3;
  min-height: 66px;
}

.psr-publication-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.psr-publications-section .psr-publication-footer {
  margin-top: auto;
}

.psr-publication-card:hover .psr-publication-title {
  color: var(--psr-secondary);
}

.psr-publication-shape {
  display: flex;
  position: absolute;
  top: -5px;
  left: 36px;
  z-index: 2;
  opacity: 0;
  filter: url(#rounded-clippath-filter-small);
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.psr-publication-shape .psr-hexagon {
  width: 30px;
  height: 26px;
  margin-right: 3px;
  background-color: var(--psr-primary);
}

.psr-publication-shape .psr-hexagon-lg {
  width: 48px;
  height: 26px;
  background-color: var(--psr-secondary);
}

.psr-publication-card:hover .psr-publication-shape {
  opacity: 1;
  transform: scale(1);
}

.psr-domain {
  font-size: 13px;
  font-weight: 600;
  color: var(--psr-primary);
}

.psr-domain-card h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 48px;
  transition: color 0.3s linear;
}

.psr-domain-card:hover h4 {
  color: var(--psr-secondary);
}

.psr-domain-card .btn {
  margin-top: auto;
}

.psr-domain-shape {
  display: flex;
  position: absolute;
  top: -5px;
  left: 36px;
  z-index: 2;
  opacity: 0;
  filter: url(#rounded-clippath-filter-small);
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.psr-domain-shape .psr-hexagon {
  width: 30px;
  height: 26px;
  margin-right: 3px;
  background-color: var(--psr-primary);
}

.psr-domain-shape .psr-hexagon-lg {
  width: 48px;
  height: 26px;
  background-color: var(--psr-secondary);
}

.psr-domain-card:hover .psr-domain-shape {
  opacity: 1;
  transform: scale(1);
}

.psr-nav-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.psr-publication-hero-next {
  display: block;
  font-size: 0.85em;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 6px;
}

.psr-publication-hero-progress {
  display: block;
  font-size: 0.8em;
  font-weight: 500;
  opacity: 0.75;
  margin-top: 4px;
}

.psr-publication-hero-next:empty {
  display: none;
}

.psr-publication-hero-progress:empty {
  display: none;
}

.about-layout2 .about-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.psr-publication-loader {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px 0;
  color: #4a4a4a;
  font-size: 0.9rem;
}

.psr-loader-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-top-color: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  animation: psr-spin 0.8s linear infinite;
}

@keyframes psr-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.psr-publication-details-list li {
  margin-bottom: 8px;
}

.psr-publications-page .post-item .post-img img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

.psr-publications-page .post-item .post-img.psr-publication-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, rgba(12, 124, 89, 0.92), rgba(12, 124, 89, 0.88));
}

.psr-publications-page .post-item .post-img.psr-publication-hero::before,
.psr-publications-page .post-item .post-img.psr-publication-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.45;
  pointer-events: none;
}

.psr-publications-page .post-item .post-img.psr-publication-hero::before {
  width: 220px;
  height: 220px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
}

.psr-publications-page .post-item .post-img.psr-publication-hero::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -40px;
  background: radial-gradient(circle, rgba(12, 124, 89, 0.5), transparent 70%);
}

.psr-publications-page .psr-publication-hero .post-meta-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
}

.psr-publication-hero-link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.psr-publication-hero-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.28);
  color: #ffffff;
}

.psr-publication-hero-link.psr-hero-disabled {
  pointer-events: none;
  opacity: 0.7;
  box-shadow: none;
  transform: none;
}

.psr-publication-hero-content {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.psr-publication-hero-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 22px;
  flex-shrink: 0;
}

.psr-publication-hero-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.psr-publication-hero-label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

.psr-publication-hero-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.psr-publication-hero-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.psr-publications-page .post-item .post-title {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  line-height: 1.3;
  margin-bottom: 14px;
}

@media (max-width: 575.98px) {
  .psr-publications-page .post-item .post-img img {
    max-height: 260px;
  }

  .psr-publications-page .post-item .post-img.psr-publication-hero {
    min-height: 200px;
    padding: 18px;
  }

  .psr-publication-hero-link {
    padding: 14px 16px;
    gap: 12px;
  }

  .psr-publication-hero-cta {
    display: none;
  }

  .psr-publications-page .post-item .post-title {
    font-size: 1.4rem;
  }
}

.widget-tags ul li span {
  display: block;
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
  padding: 9px 12px;
  margin: 0 10px 10px 0;
  border-radius: 7px;
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.psr-domains-section {
  background: var(--psr-light);
}

.psr-highlight-section {
  background: linear-gradient(120deg, rgba(12, 124, 89, 0.08), rgba(12, 124, 89, 0.08));
}

.psr-highlight-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.psr-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 40px rgba(15, 23, 42, 0.14);
}

.psr-highlight-icon {
  font-size: 28px;
  color: var(--psr-primary);
  margin-bottom: 16px;
}

.psr-domain-card ul {
  padding-left: 18px;
  margin-bottom: 20px;
  color: #475569;
  min-height: 84px;
}

.psr-domain-card li {
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.psr-about-section {
  background: #fff;
}

.psr-publications-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.psr-publications-carousel .slick-list {
  margin: 0 -12px;
}

.psr-publications-carousel .slick-track {
  display: flex;
}

.psr-publications-carousel .slick-slide {
  padding: 0 12px;
  height: auto;
}

.psr-publications-carousel .psr-publication-slide {
  display: flex;
  height: 100%;
}

.psr-publications-carousel .psr-publication-card {
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.psr-domains-carousel .slick-list {
  margin: 0 -12px;
}

.psr-domains-carousel .slick-track {
  display: flex;
}

.psr-domains-carousel .slick-slide {
  padding: 0 12px;
  height: auto;
}

.psr-domains-carousel .psr-domain-slide {
  display: flex;
  height: 100%;
}

.psr-domains-carousel .psr-domain-card {
  margin-bottom: 0;
  height: 100%;
}

.psr-publications-progress {
  background: rgba(12, 124, 89, 0.12);
  color: var(--psr-secondary);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.psr-load-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.psr-loader {
  font-size: 14px;
  color: var(--psr-muted);
}

.psr-end-message {
  font-size: 14px;
  color: var(--psr-muted);
}

.psr-about-images {
  position: relative;
  display: grid;
  place-items: center;
}

.psr-about-image-lg {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.psr-about-image-sm {
  position: absolute;
  bottom: -20px;
  right: 10px;
  width: 45%;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.psr-info-card {
  border-top: 4px solid var(--psr-secondary);
}

.psr-info-card ul {
  padding-left: 18px;
  color: #475569;
}

.psr-info-icon {
  font-size: 28px;
  color: var(--psr-secondary);
  margin-bottom: 14px;
}

.psr-filter-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  margin-bottom: 30px;
}

.psr-filter-label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.psr-filter-hint {
  background: var(--psr-light);
  padding: 18px;
  border-radius: 12px;
}

.psr-select {
  width: 100%;
}

.psr-empty-state {
  background: var(--psr-light);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--psr-muted);
}

.psr-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.psr-results-count {
  background: rgba(12, 124, 89, 0.12);
  color: var(--psr-secondary);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.psr-lab-card h4 {
  margin-bottom: 10px;
}

.psr-lab-desc {
  color: #475569;
  margin-bottom: 16px;
}

.psr-lab-meta {
  font-size: 14px;
  color: var(--psr-muted);
  margin-bottom: 8px;
}

.psr-muted {
  color: var(--psr-muted);
}

.psr-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
}

.psr-partners-text h2 {
  margin-bottom: 16px;
}

.psr-partner-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.psr-partner-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
}

.psr-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.psr-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.psr-reveal[data-psr-delay="0.1"] {
  transition-delay: 0.1s;
}

.psr-reveal[data-psr-delay="0.2"] {
  transition-delay: 0.2s;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes bounceHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.select2-container--default .select2-selection--single {
  height: 48px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 8px 14px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 30px;
  color: #0f172a;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
}

.select2-dropdown {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.psr-publications-filters .select2-container {
  width: 100% !important;
}

.psr-publications-filters .select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 8px 14px;
}

.psr-publications-filters .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-right: 32px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.psr-publications-filters .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
  right: 10px;
}

.widget-search .select2-container {
  width: 100% !important;
}

.widget-search .select2-container--default .select2-selection--single {
  height: 55px;
  border-radius: 12px;
  border: none;
  padding: 8px 18px;
  background-color: #fff;
}

.widget-search .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 39px;
  padding-left: 0;
  padding-right: 38px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-search .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 55px;
  right: 16px;
}

@media (max-width: 991px) {
  .psr-section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .psr-hero {
    padding-top: 140px;
  }

  .psr-hero-content h1 {
    font-size: 34px;
  }

  .psr-about-image-sm {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}

body.psr-menu-open {
  overflow: hidden;
}

.psr-carousel-shell {
  position: relative;
  padding: 0 52px;
}

.psr-carousel-nav {
  position: absolute;
  top: calc(50% - 16px);
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid #d6dee8;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.psr-carousel-nav-prev {
  left: 0;
}

.psr-carousel-nav-next {
  right: 0;
}

.psr-carousel-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

.psr-carousel-nav:disabled,
.psr-carousel-nav[aria-disabled="true"] {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.psr-domain-filter-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.psr-domain-filter-nav .psr-carousel-nav {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  flex-shrink: 0;
}

.psr-domain-filter-track {
  flex: 1 1 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: thin;
}

.psr-domain-filter-track::-webkit-scrollbar {
  height: 6px;
}

.psr-domain-filter-track::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.2);
  border-radius: 999px;
}

.psr-domain-filters {
  margin-bottom: 0 !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  min-width: max-content;
  width: max-content;
}

.psr-domain-filters li {
  flex: 0 0 auto;
}

.psr-domain-filters .filter {
  white-space: nowrap;
}

.psr-mobile-menu-icon {
  width: 18px;
  margin-right: 8px;
  justify-content: center;
  color: var(--psr-primary);
  font-size: 14px;
}

@media (max-width: 991px) {
  .navbar .navbar-collapse {
    --psr-mobile-drawer-width: min(86vw, 340px);
  }

  .navbar .navbar-collapse .navbar-nav {
    width: var(--psr-mobile-drawer-width);
    padding: 74px 0 20px;
  }

  .navbar .navbar-collapse .nav-item .nav-item-link {
    display: flex;
    align-items: center;
    padding-right: 18px;
  }

  .navbar .close-mobile-menu {
    top: 16px;
    left: calc(var(--psr-mobile-drawer-width) - 50px);
    right: auto;
    border-color: #dbe2ea;
    color: #0f172a;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
    opacity: 1;
    transform: scale(1);
    transition-delay: 0s;
  }

  .psr-hero-content .btn {
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .psr-section {
    padding: 64px 0;
  }

  .psr-hero {
    padding: 120px 0 72px;
  }

  .psr-hero-content h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .psr-hero-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .psr-hero-content .btn {
    width: 100%;
    justify-content: center;
    margin-right: 0 !important;
  }

  .psr-scroll-hint {
    display: none;
  }

  .psr-hero-card {
    margin-top: 22px;
    padding: 22px;
  }

  .psr-carousel-shell {
    padding: 0 38px;
  }

  .psr-carousel-nav {
    width: 34px;
    height: 34px;
    top: calc(50% - 12px);
    font-size: 12px;
  }

  .psr-publications-carousel .slick-list {
    margin: 0 -6px;
  }

  .psr-publications-carousel .slick-slide {
    padding: 0 6px;
  }

  .psr-domain-filter-nav {
    gap: 8px;
  }

  .psr-domain-filters .filter {
    font-size: 13px;
    padding: 8px 12px;
  }
}

@media (max-width: 575.98px) {
  .header-topbar {
    display: none;
  }

  .navbar .navbar-collapse {
    --psr-mobile-drawer-width: calc(100vw - 56px);
  }

  .navbar .close-mobile-menu {
    left: calc(var(--psr-mobile-drawer-width) - 46px);
  }

  .psr-empty-state {
    padding: 24px 16px;
  }
}

.psr-publications-filters {
  padding: 70px 0 30px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.psr-publications-filters .psr-filter-card {
  margin-bottom: 0;
}

.psr-filter-help {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--psr-muted);
}

.psr-filter-input {
  height: 48px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 10px 14px;
}

.psr-flux-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.psr-flux-panel,
.psr-flux-publications {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.psr-flux-panel-header h3 {
  margin-bottom: 8px;
}

.psr-theme-search {
  margin-bottom: 12px;
}

.psr-filter-input {
  font-size: 14px;
}

.psr-theme-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 6px;
}

.psr-theme-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--psr-dark);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.psr-theme-link i {
  color: var(--psr-secondary);
}

.psr-theme-link:hover {
  background: rgba(12, 124, 89, 0.08);
  border-color: rgba(12, 124, 89, 0.2);
  color: var(--psr-primary);
  text-decoration: none;
}

.psr-theme-empty {
  color: var(--psr-muted);
  font-size: 14px;
  padding: 8px 0;
}

.psr-flux-publications {
  display: flex;
  flex-direction: column;
}

.psr-flux-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.psr-flux-count {
  background: rgba(12, 124, 89, 0.12);
  color: var(--psr-secondary);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.psr-flux-note {
  font-size: 13px;
  color: var(--psr-muted);
}

.psr-flux-list {
    display: grid;
    gap: 16px;
    max-height: none;
    overflow: visible;

}
/* 🔥 wrapper scroll (comme psr-theme-list) */
.psr-flux-scroll {
    max-height: 520px;
    overflow-y: auto;
    padding-right: 6px;
}
.psr-flux-scroll::-webkit-scrollbar {
    width: 6px;
}

.psr-flux-scroll::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.2);
    border-radius: 999px;
}

.psr-flux-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.psr-flux-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--psr-muted);
}

.psr-flux-year {
  font-weight: 600;
}

.psr-flux-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.psr-flux-title a {
  color: var(--psr-dark);
  text-decoration: none;
}

.psr-flux-title a:hover {
  color: var(--psr-secondary);
}

.psr-flux-authors {
  font-size: 14px;
  color: var(--psr-muted);
  margin-bottom: 10px;
}

.psr-flux-excerpt {
  font-size: 14px;
  color: #334155;
  margin-bottom: 0;
}

.psr-theme-list::-webkit-scrollbar,
.psr-flux-list::-webkit-scrollbar {
  width: 6px;
}

.psr-theme-list::-webkit-scrollbar-thumb,
.psr-flux-list::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.2);
  border-radius: 999px;
}

.psr-recent-publications .widget-post-item {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.psr-recent-publications .widget-post-item:last-child {
  border-bottom: 0;
}

.psr-recent-publications .widget-post-content {
  margin-left: 0;
}

@media (max-width: 991px) {
  .psr-flux-layout {
    grid-template-columns: 1fr;
  }

  .psr-theme-list
   {
    max-height: none;
  }

    .psr-flux-list{
        min-height : auto;
    }
}

.psr-highlight-heading {
  margin-bottom: 30px;
}


.psr-recent-publications .widget-post-item {
  display: block;
}


.psr-theme-link {
  text-decoration: none;
}

.psr-publications-list {
  display: grid;
  gap: 16px;
}

.psr-publication-row {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.psr-publication-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: currentColor;
  opacity: 0;
  transform: scaleY(0.2);
  transform-origin: top;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.psr-publication-row:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.psr-publication-row .psr-publication-title {
  margin-bottom: 6px;
  font-size: 18px;
}

.psr-publication-row .psr-publication-title a {
  color: var(--psr-dark);
  text-decoration: none;
}

.psr-publication-row .psr-publication-title a:hover {
  color: var(--psr-dark);
}

.psr-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.psr-modal.is-visible {
  display: flex;
}

.psr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}

.psr-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 32px));
  max-height: 90vh;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

.psr-modal-body {
  padding: 28px;
  overflow-y: auto;
  max-height: 90vh;
}

.psr-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: var(--psr-dark);
}

.psr-modal-close:hover {
  border-color: var(--psr-secondary);
  color: var(--psr-secondary);
}

.psr-modal-title {
  margin-bottom: 8px;
  font-size: 24px;
}

.psr-modal-authors {
  color: var(--psr-muted);
  margin-bottom: 16px;
}

.psr-modal-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--psr-muted);
  font-size: 14px;
}

.psr-modal-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 18px;
  font-size: 14px;
  color: var(--psr-muted);
  margin-bottom: 18px;
}

.psr-modal-resume p {
  margin-bottom: 10px;
}

.psr-modal-tags h5 {
  margin-bottom: 10px;
}

.psr-modal-tags ul li span {
  display: block;
  font-size: 13px;
  line-height: 1;
  padding: 8px 12px;
  margin: 0 10px 10px 0;
  border-radius: 7px;
  color: #fff;
  background: var(--psr-secondary);
}

body.psr-modal-open {
  overflow: hidden;
}

