.trend-page .hero-section .hero-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.trend-page .hero-section .hero-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 700px;
  width: 100%;
  left: unset;
  right: 0;
  bottom: 8%;
  z-index: 2;
  padding: 64px;
  background: rgba(var(--accent-orange-rgb),0.8);
  clip-path: polygon(72px 0, 100% 0, 100% 100%, 0 100%, 0 72px);
  background-image: 
    linear-gradient(135deg, transparent calc(0% + 6px), rgba(var(--accent-orange-rgb),0.8) 0%, rgba(var(--accent-orange-rgb),0.8) 100%, transparent 0%),
    linear-gradient(135deg, transparent calc(0% + 6px), var(--accent-orange) 0%, var(--accent-orange) calc(100% - 14px), transparent 0%);
  background-size: 20px 20px, 20px 20px;
  background-position: top left, top left;
  background-repeat: no-repeat, no-repeat;
}

.trend-page .hero-section .hero-content .hero-text,
.trend-page .hero-section .hero-content .breadcrumb a,
.trend-page .hero-section .hero-content .breadcrumb .current,
.trend-about-container .section-title,
.trend-about-container .section-description {
  color: var(--dark-gray);
}

.trend-page .hero-section .hero-content .breadcrumb .separator {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cpath%20d%3D%22m6%204%204%204-4%204%22%20stroke%3D%22%23343A40%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h16v16H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.trend-about-container {
  width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  margin: 0 auto;
  padding: 72px 0;
}

.trend-about-container .section-title,
.trend-about-container .section-description {
  margin: 0;
}

.trend-about-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.trend-about-image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 64px 64px 0;
  border-color: transparent var(--accent-orange) transparent transparent;
  z-index: 10;
}

.trend-about-image img {
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.trend-about-content {
  background-color: var(--accent-orange);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  position: relative;
}

.trend-about-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trend-about-text {
  font-family: var(--primary-font);
  font-size: 18px;
  color: var(--white);
  display: block;
  margin: 18px 0 0 64px;
}

.trend-about-content::before {
  content: '';
  float: left;
  width: 48px;
  height: 43px;
  margin-right: 16px;
  margin-bottom: 8px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2248%22%20height%3D%2243%22%20viewBox%3D%220%200%2048%2043%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M26.667%207.7c0-4.256%203.876-7.7%208.666-7.7H48v15.4H36.667c-1.105%200-2%20.795-2%201.777s.895%201.776%202%201.776H48v23.692H26.667V17.176c0-.981-.896-1.776-2-1.776H11.333c-1.104%200-2%20.795-2%201.777s.896%201.776%202%201.776h11.334v23.692H0V9.477C0%204.239%204.771%200%2010.667%200h15.428c-2.124%202.014-3.428%204.721-3.428%207.7%200%20.981.895%201.777%202%201.777s2-.796%202-1.777%22%20fill%3D%22%23505a63%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.trend-about-authors,
.trend-about-cta {
  margin-left: 64px;
}

.trend-about-authors p {
  font-family: var(--primary-font);
  font-size: 16px;
  color: var(--white);
  margin: 0;
  line-height: 1.5;
}

.trend-selection {
  padding: 72px 48px 36px;
  background-color: var(--light-gray);
}

.trend-selection-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto 40px;
  text-align: center;
  max-width: 640px;
}

.trend-selection-header .section-title,
.trend-selection-header .section-description {
  margin-bottom: 0;
  color: var(--dark-gray);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.criteria-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.criteria-header .icon {
  width: 30px;
  height: 30px;
  background-size: 30px;
  border: 0;
}

.criteria-header .icon.check {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M27.251%2012.5a12.5%2012.5%200%201%201-6.001-8.33%22%20stroke%3D%22%23ff9800%22%20stroke-width%3D%221.667%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M11.25%2013.75%2015%2017.5%2027.5%205%22%20stroke%3D%22%23ff9800%22%20stroke-width%3D%221.667%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
}

.criteria-body {
  padding-left: 47px;
}

.criteria-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.criteria-card h4 {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-orange);
  margin: 0;
}

.criteria-card p {
  font-family: var(--primary-font);
  font-size: 18px;
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.5;
}

.trend-process {
  padding: 36px 48px 72px;
}

.trend-process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto 40px;
  text-align: center;
  max-width: 960px;
}

.trend-process-header .section-title,
.trend-process-header .section-description {
  margin-bottom: 0;
  color: var(--dark-gray);
}

.process-steps {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

.process-card {
  border: 1px solid var(--accent-orange);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  width: 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  justify-content: space-between;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  background: linear-gradient(135deg, transparent calc(100% - 14px), var(--accent-orange) 0%, var(--accent-orange) 100%, transparent 0%) bottom right / 20px 20px no-repeat;
}

.process-card-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-number {
  font-family: var(--primary-font);
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-orange);
  text-align: right;
}

.process-card h4 {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-orange);
  margin: 0;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-list li {
  font-family: var(--primary-font);
  font-size: 18px;
  color: var(--dark-gray);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.process-list li::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--dark-gray);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2212%22%20viewBox%3D%220%200%2016%2012%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M9.501%201.617a.965.965%200%200%201%200-1.34.906.906%200%200%201%201.306%200L15.73%205.33c.36.37.36.97%200%201.34l-4.923%205.053a.906.906%200%200%201-1.306%200%20.965.965%200%200%201%200-1.34l3.347-3.436H.923A.935.935%200%200%201%200%206c0-.523.413-.947.923-.947h11.925z%22%20fill%3D%22%23343a40%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 12px;
}

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */

@media (max-width: 1200px) {
  .trend-hero-content {
    padding-left: 24px;
  }

  .trend-hero-content {
    padding-top: 48px;
  }

  .trend-hero-box {
    position: static;
    right: auto;
    top: auto;
    width: 100%;
    margin: 0 auto 24px auto;
    padding: 24px;
    box-shadow: none;
  }

  .breadcrumb-light {
    position: static;
    top: auto;
    left: auto;
    margin: 0 0 16px 0;
    color: var(--dark-color);
  }

  .trend-institutional-split {
    flex-direction: column;
    gap: 32px;
  }

  .institutional-image {
    flex: 1;
    width: 100%;
  }

  .institutional-content {
    width: 100%;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
  }

 /*  .newsletter-trend {
    flex-direction: column;
    padding: 48px 64px;
    gap: 48px;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-left {
    width: 100%;
  } */

  .process-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .process-card {
    width: 100%;
  }

  .process-connector {
    width: 100%;
    height: 2px;
    order: 3;
  }
}

@media (max-width: 768px) {
  .trend-hero {
    height: 600px;
    margin-top: 80px;
  }

  .trend-hero-content {
    padding-top: 80px;
    padding-left: 24px;
  }

  .breadcrumb-light {
    margin-bottom: 120px;
    font-size: 12px;
  }

  .trend-hero-box {
    padding: 24px 32px;
  }

  .trend-hero-label {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .trend-hero-title {
    font-size: 32px;
    max-width: 400px;
  }

  .trend-institutional {
    padding: 32px 24px;
  }

  .section-header {
    padding: 0 24px;
    margin-bottom: 32px;
  }

  .section-title-large {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
    padding: 0 24px;
  }

  .trend-process {
    padding: 32px 24px;
  }

  .criteria-grid {
    gap: 24px;
    max-width: 100%;
  }

  .criteria-card {
    padding: 24px;
  }

  .criteria-card h3 {
    font-size: 20px;
  }

  .criteria-card p {
    font-size: 16px;
  }

  .institutional-content {
    padding: 32px;
  }

  .institutional-text {
    font-size: 16px;
  }

  /* .newsletter-trend {
    padding: 32px 24px;
    gap: 32px;
  }

  .newsletter-form {
    padding: 24px;
    width: 100%;
  }

  .newsletter-language-row {
    flex-direction: column;
    gap: 16px;
  }

  .language-options {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-inputs {
    flex-direction: column;
    gap: 16px;
  }

  .form-group {
    width: 100%;
  }

  .newsletter-left h2 {
    font-size: 24px;
  }

  .newsletter-left p {
    font-size: 16px;
  } */

  .process-card {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .trend-hero {
    height: 400px;
    margin-top: 60px;
  }

  .trend-hero-content {
    padding-top: 60px;
    padding-left: 16px;
  }

  .breadcrumb-light {
    margin-bottom: 80px;
    font-size: 11px;
  }

  .trend-hero-box {
    padding: 16px 24px;
  }

  .trend-hero-label {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .trend-hero-title {
    font-size: 24px;
    max-width: 280px;
  }

  .trend-institutional {
    padding: 24px 16px;
  }

  .section-header {
    padding: 0 16px;
    margin-bottom: 24px;
  }

  .section-title-large {
    font-size: 22px;
  }

  .section-description {
    font-size: 14px;
    padding: 0 16px;
  }

  .criteria-card {
    padding: 16px;
  }

  .criteria-card h3 {
    font-size: 18px;
  }

  .criteria-card p {
    font-size: 14px;
  }

  .institutional-split {
    gap: 16px;
  }

  .institutional-content {
    padding: 24px 16px;
  }

  .institutional-text {
    font-size: 14px;
  }

  .institutional-authors p {
    font-size: 14px;
  }

  /* .newsletter-trend {
    padding: 24px 16px;
    gap: 16px;
  }

  .newsletter-form {
    padding: 16px;
    width: 100%;
  }

  .newsletter-left h2 {
    font-size: 20px;
  }

  .newsletter-left p {
    font-size: 14px;
  }

  .form-checkbox label {
    font-size: 14px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-input {
    font-size: 14px;
    height: 44px;
  }

  .language-label {
    font-size: 14px;
  }

  .form-radio label {
    font-size: 14px;
  } */

  .process-card {
    padding: 16px;
  }

  .process-card h3 {
    font-size: 18px;
  }

  .process-list li {
    font-size: 14px;
    gap: 12px;
  }

  .process-list li::before {
    width: 24px;
    height: 24px;
  }

  .process-number {
    font-size: 28px;
  }
}
