/* COLOR VARIABLE */
/* FONT VARIABLE */
/*OTHER VARIABLE */
#ruleSection {
  padding: 3rem 0 4rem;
  max-width: 800px;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #ruleSection {
    padding: 2rem 0 3rem;
  }
}

.intro-card {
  border: 0.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 18px;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .intro-card {
    padding: 20px;
  }
}

.intro-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #D0004B;
  border-radius: 4px 0 0 4px;
}

@media screen and (max-width: 767px) {
  .intro-card::before {
    width: 3px;
  }
}

.intro-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .intro-card h2 {
    font-size: 18px;
  }
}

.intro-card p {
  font-size: 1rem;
  line-height: 1.85;
}

@media screen and (max-width: 767px) {
  .intro-card p {
    font-size: 14px;
  }
}

.custom-accordion .rule-card {
  border: 0.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.custom-accordion .rule-card .rule-header {
  padding: 16px 18px;
  user-select: none;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  background-color: #FFFBFC;
  border-color: #D0004B;
}

@media screen and (max-width: 767px) {
  .custom-accordion .rule-card .rule-header {
    padding: 12px;
    align-items: flex-start;
  }
}

.custom-accordion .rule-card .rule-num {
  font-size: 14px;
  font-weight: 800;
  color: #D0004B;
  background: #FBEAF0;
  min-width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .custom-accordion .rule-card .rule-num {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.custom-accordion .rule-card .rule-summary {
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .custom-accordion .rule-card .rule-summary {
    font-size: 14px;
  }
}

/*# sourceMappingURL=rule.css.map */