/* SLIDER */

.arasia-slider-container {
	display: flex;
	flex-wrap: wrap;
	padding: 15px;
}

.arasia-slider {
	transition: transform 0.3s ease;
}

.arasia-slider img {
	border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arasia-slider:hover {
    transform: translateY(-5px);
}

.arasia-slider:hover img {
    box-shadow: 0 8px 20px rgba(210, 96, 20, 0.3);
}

/* WIDGETS */

.arasia-widgets-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
	margin-bottom: 40px;
    max-width: 1200px;
    flex-wrap: wrap;
    padding: 0 15px;
}

.arasia-widget {
    flex: 1 1 calc(33.33% - 20px);
	max-width: none;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.arasia-widget img {
    width: 100%;
	height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arasia-widget:hover {
    transform: translateY(-5px);
}

.arasia-widget:hover img {
    box-shadow: 0 8px 20px rgba(210, 96, 20, 0.3);
}

/* BOTTOM BLOG */

.arasia-bottom-blog-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    flex-wrap: wrap;
    padding: 0 15px;
	margin: 10px auto;
	margin-bottom: 10px;
}

.arasia-bottom-blog {
    flex: 1 1 calc(25% - 10px);
	max-width: 300px;
    min-width: 200px;
	padding-bottom: 10px;
	padding-top: 5px;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s ease;
}

.arasia-bottom-blog img {
    width: 100%;
	height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arasia-bottom-blog:hover img {
    box-shadow: 0 8px 20px rgba(210, 96, 20, 0.3);
	transform: translateY(-5px);
}

.arasia-bottom-blog:hover {
	transform: translateY(-5px);
}

.blog-title-container {
    width: 100%;  /* Prendre toute la largeur disponible */
    padding: 0;   /* Optionnel : enlève le padding si nécessaire */
}

.blog-title {
	text-align: center;
    text-transform: uppercase;
}

.arasia-bottom-blog p {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
	color: #333333;
}

/* BOTTOM BANNER */

.arasia-bottom-banner-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px auto;
	margin-bottom: 10px;
    max-width: 1200px;
    flex-wrap: wrap;
    padding: 0 15px;
}

.arasia-bottom-banner {
    flex: 1 1 calc(25% - 10px);
	max-width: 300px;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.arasia-bottom-banner img {
    width: 100%;
	height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arasia-bottom-banner:hover {
    transform: translateY(-5px);
}

.arasia-bottom-banner:hover img {
    box-shadow: 0 8px 20px rgba(210, 96, 20, 0.3);
}

/* TRUSTPILOT DONATION */

.arasia-trustpilot-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px; /* optionnel : espace entre les deux widgets */
  width: 100%;
}

.donation-widget {
	padding-right: 15px;
}

.donation-widget a {
  display: inline-block;
  height: 52px;
  width: 52px;
  background-image: url('/img/donation.png');
  background-repeat: no-repeat;
  background-size: auto 52px;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.donation-widget a:hover {
  transform: scale(1.1);
}





