@import "./common-var.css";

/* ============================================================
   Banner Section — Investor Relations Hero
   ============================================================ */

/* .container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
} */

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 26px;
}

@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.feature-card {
  display: flex;
  background: var(--primary-color);
  border-radius: 16px;
  overflow: hidden;
}

/* Image block */
.feature-img {
  width: 40%;
  min-height: 250px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;

  img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* Content */
.feature-content {
  width: 60%;
  padding: 15px;
}

/* Number */
.feature-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: normal;
}

/* Title */
.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 28px;
}

/* Responsive */
@media (max-width: 1024px) {
  .feature-card {
    flex-direction: column;
  }

  .feature-img {
    height: 400px;
    width: 100%;
  }

  .feature-content {
    /* height: 60%; */
    width: 100%;
  }
}
/* ============================================================
   RTL Support
   ============================================================ */
/* [dir="rtl"]  */
