@charset "UTF-8";


.circle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: var(--i_bg_color);
  flex-wrap: wrap;
}

.circle {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background-color: var(--i_sub2_color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--i_txt_color);
  padding: 24px 16px;
  box-sizing: border-box;
  flex-shrink: 0;
}



.circle .text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 10px 0;
}

.circle .heading-large {
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  margin-top: 2px;
  color: #d4a300;
}


.circle .sub-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.circle .highlight {
  color: #e6a100;
  font-weight: 900;
  font-size: 22px;
}

.circle .footnote {
  font-size: 12px;
  line-height: 1.2;
  margin-top: 6px;
  margin-bottom: 2px;
  opacity: 0.8;
}


.jpx-logo {
  width: 28px;
  height: 22px;
}


.multiply-icon {
  font-size: 28px;
  font-weight: bold;
  color: var(--i_main_color);
  line-height: 1;
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================== */

@media (max-width: 990px) {
 .circle-container {

  gap: 10px;

}

}


@media (max-width: 768px) {
  .circle-container {
    flex-direction: column;
    gap: 16px;
  }

.circle {
  width: 270px;
  height: 270px;

}

  .multiply-icon {
    display: block !important;
    transform: rotate(0deg); /* Keeps 'x' centered vertically between stacked circles */
  }
}