@layer components {

  .rich-text-container a.btn-yellow,
  a.btn-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-brand-500);
    color: var(--color-ink) !important; /* přepíše turquoise */
    border-radius: 100px;
    padding: 0 20px;
    height: 50px;
    min-width: 130px;
    font-family: var(--font-body);
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background-color 0.3s ease-in-out;
    border: none;
    margin: 0;
  }
  .btn-yellow img {
    margin-left: 10px;
    width: 21px;
    height: 21px;
  }
  .rich-text-container a.btn-yellow:hover,
  a.btn-yellow:hover {
    background-color: var(--color-brand-400);
  }

}
