.today-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #363535;
  gap: 40px;
  padding: 56px 24px;
  /* max-width: 1260px; */
  margin: 0 auto;
}

.today-section-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1260px;
}

.today-section-title {
  font-size: 40px;
  font-weight: 400;
  width: 100%;
  text-align: left;
  background-color: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.today-section-block-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.today-section-block {
  display: flex;
  flex-direction: column;
  position: relative;
}

.today-section-block:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  /* Adjust the height of the border as needed */
  background-color: white;
}

.today-section-block-number {
  font-size: 53px;
  background-color: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  margin-bottom: 10px;
  width: fit-content;
}

.today-section-block-text {
  font-size: 24px;
  background-color: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  width: fit-content;
  font-weight: 300;
}

@media (min-width: 768px) {
  .today-section-block-wrapper {
    flex-direction: row;
  }

  .today-section-block {
    width: 100%;
  }

  .today-section {
    padding: 56px 0px;
  }
}