/* ==========================================================================
   Mon Site Elementor — Email Course Section
   ========================================================================== */

.ms-email-course {
  padding: 72px 56px;
  background: var(--ms-cream);
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 56px;
  align-items: center;
  border-bottom: 1px solid rgba(180, 146, 42, 0.12);
}

/* Notebook image placeholder */
.ms-email-course__image {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, #18140e 0%, #231e14 60%, #18140e 100%);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ms-email-course__notebook {
  width: 80px; height: 104px;
  background: #0d0b07;
  border-radius: 2px 5px 5px 2px;
  border-left: 7px solid #1c1810;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 8px 24px rgba(0, 0, 0, 0.5);
}

.ms-email-course__notebook-mark {
  width: 26px; height: 26px;
  border: 1.2px solid var(--ms-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ms-serif);
  font-size: 10px;
  font-style: italic;
  color: var(--ms-gold);
}

/* Content */
.ms-email-course__title {
  font-family: var(--ms-serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  color: var(--ms-near-black);
  line-height: 1.18;
  margin: 0 0 10px;
}

.ms-email-course__desc {
  font-size: 13.5px;
  color: var(--ms-grey);
  line-height: 1.7;
  max-width: 440px;
  margin: 0;
  font-family: var(--ms-sans);
}

/* CTA */
.ms-email-course__cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 1100px) {
  .ms-email-course {
    padding: 56px 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ms-email-course__image { display: none; }
}
