/* ----------------------
   Container / Block
---------------------- */
.df-fact-box {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  min-height: auto;
}

/* ----------------------
   Fact Text
---------------------- */
.df-fact-text {
  width: 400px;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

/* ----------------------
   Button Container
---------------------- */
.df-next-container {
  width: 200px;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

/* ----------------------
   Button
---------------------- */
.df-next {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  border: 3px solid;
  padding: 0.2em 0.4em;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 1px 1px 0 0, 2px 2px 0 0, 3px 3px 0 0, 4px 4px 0 0, 5px 5px 0 0;
  display: inline-block;
  white-space: normal; /* wrap text */
  text-decoration: none;
}

.df-counter {
    display: block;       /* makes it a block element */
    text-align: left;     /* aligns text to the left */
    margin: 0;            /* remove extra margin */
    padding: 0;           /* optional, keeps it tight */
    font-weight: bold;  /* optional, for emphasis */
}


/* ----------------------
   Responsive
---------------------- */
@media (min-width: 768px) {
  .df-fact-text {
    width: 500px;
  }
  .df-next-container {
    width: 250px;
  }
}

@media (max-width: 500px) {
  .df-next {
    width: 100%;
  }
}
