@charset "UTF-8";
/* ----------------- Base / Desktop ------------------- */

.engagement-section {
  max-width: 1200px;
  margin: 0 auto;
  color: #5E5A54;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight:300;
}

.common-gold-hr {
  border: none;
  background: none;
  position: relative;
  height: 4px;
  width: 250px;
  margin: 1rem 0 2rem 0;
  padding: 0;
}

.common-gold-hr::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100px;
  background-color: #cbb990;
  border-radius: 2px;
}

.common-gold-hr::after {
  content: '';
  position: absolute;
  left: 100px;
  top: 1px;
  height: 2px;
  width: 150px;
  background-color: #cbb990;
  border-radius: 1px;
}

.engagement-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.image-container {
  flex: 0 0 55%;
  max-width: 55%;
}

.image-container img {
  width: 84%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/*.text-container {
  flex: 0 0 45%;
  max-width: 45%;
  padding-left: 1.5rem;
  box-sizing: border-box;
}*/

.text-container h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size:1.5rem;
  font-weight: 300;
  font-family: 'Domaine', Arial, sans-serif;
}

.text-container p {
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #5E5A54;
  font-size: 1rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  background-color: #d3b46c;
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
}

.download-btn svg {
  fill: white;
}

.download-btn:hover,
.download-btn:focus {
  background-color: #b59c45;
  outline: none;
}

/* ------------------- Mobile (max-width: 600px) ------------------- */

@media (max-width: 600px) {
  .engagement-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .image-container,
  .text-container {
    max-width: 100%;
    flex: none;
    /*padding-left: 1.2rem;
	padding-right: 1.2rem;*/
  }

  .image-container img {
    width: 100%;
  }
}
