:root {
  --primary-orange: #E08008;
  --text-dark: #111111;
  --bg-light: #f8f9fa;
}

/* Scoped Styles for the Promo Block */
.promo-block {
  padding: 60px 0;
  background-color: transparent;
  /* Ensure section overflow is handled per requirements */
  overflow: hidden;
}

/* Left Card Styling */
.promo-block__card {
  background-color: #ffffff;
  border-radius: 40px;
  padding: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.promo-block__logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 40px;
  display: block;
}

.promo-block__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 50px;
  max-width: 500px;
}

/* Custom CTA Button */
.btn-read {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-orange);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 12px 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(224, 128, 8, 0.3);
}

.btn-read:hover {
  background-color: #d67600;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 128, 8, 0.4);
  color: #ffffff;
}

.btn-read:active {
  transform: scale(0.98);
}

.btn-read__text {
  margin-right: 16px;
}

.btn-read__icon {
  background-color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  transition: transform 0.3s ease;
}

.btn-read:hover .btn-read__icon {
  transform: translateX(3px);
}

.btn-read__icon svg {
  width: 8px;
  height: auto;
  stroke-width: 3px;
}

/* Right Video Card Styling */
.promo-block__video {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.promo-block__video:hover {
  transform: scale(1.01);
}

/* Dark overlay on hover or active state to make button pop */
.promo-block__video::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.promo-block__video:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

/* Play Button Styling */
.promo-block__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.play-button {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-button svg {
  margin-left: 6px; /* Optical centering of triangle */
}

.promo-block__video:hover .play-button {
  transform: scale(1.15);
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .promo-block__card {
    padding: 40px;
    border-radius: 30px;
    min-height: auto;
  }
  
  .promo-block__video {
    min-height: 350px;
    border-radius: 30px;
  }

  .promo-block__title {
    font-size: 22px;
  }
}

@media (max-width: 575.98px) {
  .promo-block__card {
    padding: 30px;
    border-radius: 20px;
  }
  
  .promo-block__video {
    min-height: 250px;
    border-radius: 20px;
  }

  .play-button {
    width: 70px;
    height: 70px;
  }
  
  .play-button svg {
    width: 18px;
    height: 22px;
  }
}