
.dbt-today {
  margin: 2.5rem 0;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid rgba(36, 50, 61, 0.12);
  border-radius: 16px;
  background: #f8f6f0;
}

.dbt-today__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dbt-today__eyebrow {
  margin: 0 0 0.25rem;
  color: #8b7134;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dbt-today__title {
  margin: 0;
  color: #24323d;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.dbt-today__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  color: #52606b;
  font-size: 0.78rem;
}

.dbt-today__live span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #3f8a5b;
  box-shadow: 0 0 0 4px rgba(63, 138, 91, 0.12);
}

.dbt-today__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.dbt-today__card {
  display: flex;
  gap: 0.8rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(36, 50, 61, 0.1);
  border-radius: 11px;
  background: #fff;
}

.dbt-today__icon {
  flex: 0 0 auto;
  font-size: 1.5rem;
  line-height: 1.2;
}

.dbt-today__label,
.dbt-today__detail {
  display: block;
}

.dbt-today__label {
  margin-bottom: 0.25rem;
  color: #68747d;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.dbt-today__value {
  display: block;
  color: #24323d;
  font-size: 1.55rem;
  line-height: 1.1;
}

.dbt-today__value--time {
  font-size: 1.15rem;
}

.dbt-today__value--time span {
  color: #a7adb1;
  font-weight: 400;
}

.dbt-today__detail,
.dbt-today__link {
  margin-top: 0.3rem;
  color: #68747d;
  font-size: 0.78rem;
  line-height: 1.35;
}

.dbt-today__link {
  display: inline-block;
  color: #8b7134;
  font-weight: 700;
  text-decoration: none;
}

.dbt-today__link:hover {
  text-decoration: underline;
}

.dbt-today__recommendation {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: #24323d;
  color: #fff;
}

.dbt-today__recommendation a {
  margin-left: auto;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.dbt-today__source {
  margin: 0.75rem 0 0;
  color: #7d878e;
  font-size: 0.7rem;
  text-align: right;
}

.dbt-today__notice {
  padding: 1rem;
  border-radius: 8px;
  background: #fff;
  color: #52606b;
}

@media (max-width: 991.98px) {
  .dbt-today__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .dbt-today {
    border-radius: 10px;
  }

  .dbt-today__header {
    display: block;
  }

  .dbt-today__live {
    margin-top: 0.75rem;
  }

  .dbt-today__grid {
    grid-template-columns: 1fr;
  }

  .dbt-today__recommendation {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .dbt-today__recommendation a {
    width: 100%;
    margin-left: 2.1rem;
  }
}
