/* DAYS */
.dgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 640px) {
  .dgrid {
    grid-template-columns: 1fr;
  }
}
.dbox {
  border-radius: 20px;
  padding: 36px;
  border: 1px solid;
  position: relative;
  overflow: hidden;
}
.dbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.d1 {
  background: linear-gradient(
    135deg,
    rgba(27, 125, 184, 0.1) 0%,
    rgba(27, 125, 184, 0.03) 100%
  );
  border-color: rgba(27, 125, 184, 0.2);
}
.d1::before {
  background: linear-gradient(90deg, var(--b), var(--bl));
}
.d2 {
  background: linear-gradient(
    135deg,
    rgba(245, 160, 32, 0.1) 0%,
    rgba(245, 160, 32, 0.03) 100%
  );
  border-color: rgba(245, 160, 32, 0.2);
}
.d2::before {
  background: linear-gradient(90deg, var(--o), var(--g));
}
.dtag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.d1 .dtag {
  color: var(--bl);
}
.d2 .dtag {
  color: var(--o);
}
.dbox h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}
.ditems {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.di {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--w6);
  line-height: 1.6;
}
.did {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
}
.d1 .did {
  background: rgba(27, 125, 184, 0.2);
  color: var(--bl);
}
.d2 .did {
  background: rgba(245, 160, 32, 0.2);
  color: var(--o);
}
