/*
Theme Custom CSS
Ajoutez ici vos styles personnalisés pour le thème arte.
*/

.arte-custom-block {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 2em;
  margin-bottom: 2em;
  border-radius: 8px;
}
.arte-custom-block__title {
  color: #b80000;
  margin-bottom: 1em;
  font-size: 2em;
}
.arte-custom-block__content {
  font-size: 1.1em;
}

.arte-newsletter-form {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 2em;
  margin-bottom: 0;
  border-radius: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.arte-newsletter-form__input {
  flex: 1 1 auto;
  padding: 0.8em 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}
.arte-newsletter-form__button {
  background: #b80000;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.8em 1.5em;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.arte-newsletter-form__button:hover {
  background: #900000;
}

.swap-columns-force {
    display: flex !important;
    flex-direction: column-reverse !important;
}