/* ALERT/NOTICE BLOCK */
.abbott-alert-block {
    background-color: var(--light-grey);
    padding: 3rem 0;
}

.abbott-alert-container {
    max-width: 85%;
    margin: 0 auto;
    display: flex;
    gap: 2.25rem;
    align-items: flex-start;
}

.abbott-alert-image {
    border-radius: 0 1rem 1rem 1rem;
    width: 20rem;
    height: 20rem;
    object-fit: cover;
}

.abbott-alert-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.abbott-alert-title {
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    margin: 0;
}

.abbott-alert-title span {
    font-weight: 300;
}

.abbott-alert-text {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.abbott-alert-text p {
    margin: 0 0 .75rem 0;
}

.abbott-alert-text p:last-child {
    margin-bottom: 0;
}

/* Tablet */
@media only screen and (max-width: 1024px) {
  .abbott-alert-container {
    max-width: 90%;
    gap: 1.5rem;
  }

  .abbott-alert-image {
    width: 16rem;
    height: 16rem;
  }
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .abbott-alert-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 92%;
  }

  .abbott-alert-image {
    width: 100%;
    height: auto;
    max-width: 28rem;
  }

  .abbott-alert-content {
    align-items: center;
  }

  .abbott-alert-title {
    font-size: 1.375rem;
  }

  .abbott-alert-text {
    text-align: center;
  }
}
