/**
 * Call us button styling
 */

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

.call-us-title {
  font-size: 18px;
  font-weight: bold;
}

.call-us-number {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}

.call-us-subtext {
  font-size: 12px;
  opacity: 0.7;
  line-height: 1.2;
  margin-top: 4px;
}

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

  .call-us-number {
    font-size: 16px !important;
  }

  .call-us-subtext {
    font-size: 10px;
  }
}

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

  .call-us-number {
    font-size: 11px !important;
    line-height: 1.2;
  }

  .call-us-subtext {
    font-size: 8px;
    line-height: 1.1;
  }
}
