/**
 * Best Suitable Plan For Block Styles
 *
 * Mirrors the layout used in template-plan-detail.php.
 *
 * @package osk
 */

 .best-suitable-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

 .best-suitable-inline .support-box {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}

 .best-suitable-inline .support-box .icon-box {
  position: static;
  margin-right: 12px;
}

.best-suitable-inline .support-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.best-suitable-inline .support-box .best-suitable-text {
  font-size: 18px;
  line-height: 1.4;
  color: #0b1970;
}

@media (max-width: 991px) {
   .best-suitable-inline {
    justify-content: center;
    gap: 20px 24px;
  }

   .best-suitable-inline .support-box {
    flex: 1 1 260px;
  }
}

@media (max-width: 575px) {
   .best-suitable-inline {
    flex-direction: column;
    align-items: stretch;
  }

   .best-suitable-inline .support-box {
    flex: 1 1 auto;
    justify-content: flex-start;
  }
}

/* Small phones in landscape (e.g. iPhone SE): stack items one-by-one same as portrait */
@media (max-width: 736px) and (orientation: landscape) {
  .best-suitable-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .best-suitable-inline .support-box {
    flex: 1 1 auto;
    justify-content: flex-start;
  }
}

