/* Start custom CSS for html, class: .elementor-element-71b4d8c *//* Base styling */
.antoine-section {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  align-items: stretch;
  color: black;
}

.antoine-section .antoine-image-container {
  flex: 1; /* Equal width with .antoine-text-container */
}

.antoine-section .antoine-image-container img {
  width: 100%; 
  height: auto; 
  object-fit: cover;
}

.antoine-section .antoine-text-container {
  flex: 1;
  background-color: #d4c800; 
  padding: 50px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.antoine-section .antoine-text-container h3 {
  font-size: 24px; 
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
  text-transform: uppercase; 
}

.antoine-section .antoine-text-container p {
  font-size: 16px; 
  line-height: 1.5; 
  color: #333;
  margin-bottom: 20px;
}

/* Styling for the author credit */
.antoine-text-container .author-credit {
  font-size: 14px;
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}

/* Profile Card Styling */
#antoine-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 20px;
  width: 90%; /* Full width with some margin on mobile */
  max-width: 300px; 
  margin: 20px auto; /* Center horizontally */
}

#antoine-profile-card .profile-info .name {
  font-size: 1.5em;
  font-weight: bold;
  margin: 15px 0 5px;
}

#antoine-profile-card .profile-info .role {
  font-size: 1em;
  color: #a58b7c;
  margin-bottom: 15px;
}

#antoine-profile-card .profile-info .description {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 20px;
}

#antoine-profile-card .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

#antoine-profile-card .social-icons .icon {
  font-size: 20px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

#antoine-profile-card .social-icons .icon:hover {
  color: #0077b5; /* Change hover color as needed */
}

/* Responsive Design */
@media (max-width: 768px) {
  .antoine-section {
    flex-direction: column-reverse; /* Reverse the order for mobile */
  }

  .antoine-section .antoine-text-container {
    padding: 20px; 
    text-align: center; 
  }

  .antoine-section .antoine-text-container h3 {
    font-size: 20px; 
  }

  .antoine-section .antoine-text-container p {
    font-size: 14px; 
  }

  .antoine-text-container .author-credit {
    font-size: 12px;
    margin-bottom: 15px;
  }
}/* End custom CSS */