/* Research Reports List Page Styles */

.arl-hero {
  background-color: #ffffff;
  background-image: url("../../assets/bg.jpg");
  background-repeat: repeat;
  background-position: center top;
  background-size: 1440px auto;
  background-blend-mode: multiply;
  padding-top: clamp(60px, 7vw, 60px);
  padding-bottom: clamp(60px, 7vw, 60px);
  text-align: center;
}

.arl-hero .container,
.arl-grid-section .container {
  max-width: 1008px;
}

.arl-hero__breadcrumb {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555ddb;
  margin-bottom: 24px;
}

.arl-hero__breadcrumb span {
  color: #797979;
}

.arl-hero__title {
  font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0d0c73;
  margin-bottom: 24px;
  max-width: 900px;
  margin-inline: auto;
}

.arl-hero__title span {
  color: #555ddb;
  display: block;
}

.arl-hero__subtitle {
  max-width: 720px;
  margin-inline: auto;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 0;
}

/* Reports Grid Section */
.arl-grid-section {
  background-color: #ffffff;
  background-image: url("../../assets/bg.jpg");
  background-repeat: repeat;
  background-position: center top;
  background-size: 1440px auto;
  background-blend-mode: multiply;
  padding-bottom: clamp(64px, 7vw + 20px, 112px);
}

/* Report Item Card */
.arl-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(21, 21, 125, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.arl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(21, 21, 125, 0.1);
}

.arl-card__head {
  background-color: #0d0c73;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.arl-card__company {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.arl-card__sector {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  margin-bottom: 0;
}

.arl-card__rec-badge {
  background-color: #3b44d1;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.arl-card__body {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 28px 28px 24px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.arl-card__cat-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: #e6e8fd;
  color: #555ddb;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.arl-card__headline {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
  color: #151515;
  margin-bottom: 24px;
  flex-grow: 1;
}

.arl-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #888888;
}

.arl-card__action {
  color: #0d0c73;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.arl-card__action:hover {
  color: #555ddb;
}

/* Subscribe Button Block */
.arl-cta-block {
  text-align: center;
  margin-top: clamp(44px, 5vw, 64px);
}

.arl-subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #0d0c73;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 24px rgba(13, 12, 115, 0.2);
}

.arl-subscribe-btn:hover {
  background-color: #15157d;
  color: #ffffff;
  transform: translateY(-2px);
}