/**
 * Email us button styling
 */

/* Content styling */
.email-us-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.email-us-title {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}

.email-us-email {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: inherit;
  opacity: 0.8;
}

/* Responsive styling */
@media (max-width: 600px) {
  .email-us-title {
    font-size: 16px;
  }

  .email-us-email {
    font-size: 12px;
  }
}

/* Ultra-small screen styling */
@media (max-width: 320px) {
  .email-us-title {
    font-size: 12px;
  }

  .email-us-email {
    font-size: 12px !important;
    line-height: 1.2;
  }
}
