.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px auto;
  width: 260px;
  max-width: 100%;
  padding: 6px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.c-button:hover {}

.c-button--standard {
  background: #fff;
  border: 1px solid #e65050;
  color: #e65050;
  box-shadow: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.c-button--standard:hover {
  background: #e65050;
  color: #fff;
  transform: none;
  box-shadow: none;
}

.c-button--ghost {
  background: #fff;
}

.c-button--accordion {
  position: relative;
  max-width: 100%;
  padding: 6px 48px 6px 20px;
  border-color: #e65050;
  background: #fff;
  color: #e65050;
  font-size: 16px;
  box-shadow: none;
  cursor: pointer;
  list-style: none;
}

.c-button--accordion:hover,
.c-button--accordion:focus-visible {
  background: #e65050;
  border-color: #e65050;
  color: #fff;
  transform: none;
  box-shadow: none;
}

.c-button--accordion:hover::after,
.c-button--accordion:focus-visible::after {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpolyline points='1,1 6,7 11,1' stroke='%23ea7067' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.c-button--accordion::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #e65050;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpolyline points='1,1 6,7 11,1' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 8px;
  transform: translateY(-50%);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.c-button--accordion::-webkit-details-marker {
  display: none;
}

.p-home-accordion[open] .c-button--accordion::after {
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 640px) {
  .c-button--accordion {
    width: 100%;
    max-width: 300px;
  }

  .p-home-accordion__label,
  .c-button--standard {
    margin: 20px auto;
  }
}

@media (prefers-reduced-motion: reduce) {

  .c-button--standard,
  .c-button--accordion::after {
    transition: none;
  }
}
