body {
  margin: 0;
}

td, p {
  font-size: 16px;
  color: #878787;
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
  strong {
    color: black;
  }
}
ul {
  margin: 0 0 10px 25px;
  padding: 0;
}
li {
  margin: 0 0 3px 0;
  strong {
    color: black;
  }
}
img {
  max-width: 100%;
}
blockquote {
  margin: 10px;
  font-style: italic;
}
h1, h2 {
  color: black;
}
h1 {
  font-size: 25px;
  line-height: 1.4;
}
h2 {
  font-size: 24px;
}

a {
  color: #2F82DE;
  font-weight: bold;
  text-decoration: none;
}

.entire-page {
  background-image: url('../images/login_elmonte.jpg');
  background-size: cover;
  width: 100%;
  padding: 20px 0;
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
  line-height: 1.5;
}

.email-body {
  max-width: 750px;
  min-width: 650px;
  margin: 0 auto;
  background: white;
  border-collapse: collapse;
  opacity: 0.9;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 100px;
  padding: 20px;
}

.image {
  flex-basis: 40%;
  margin-right: 20px;
  vertical-align: bottom;
}

.text {
  flex-basis: 50%;
}

img {
  max-width: 120%;
  border-radius: 5px;
  margin-bottom: 3px;
  object-fit: contain;
}

h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333333;
}

p {
  font-size: 16px;
  line-height: 1.5;
  color: #666666;
}

.email-header {
  background: #F3FF00; 
  padding: 20px;
}

.news-section {
  padding: 20px 30px;
}

.img-wrap {
  text-align: center;
  background: #eee;
  padding: 5px;
  
  img {
    display: block;
    margin: 0 auto;
  }
  .white {
    background: white;
    padding: 20px;
  }

pre {
  white-space: pre-wrap;
  background: #222;
  color: #eee;
  padding: 15px;
}
code {
  font-family: consolas, Menlo, Monaco, monospace;
}

.footer {
  background: #eee;
  padding: 10px;
  font-size: 10px;
  text-align: center;
}
.news-container {
  display: flex;
  flex-direction: column; /* Cambiar a 'row' si prefieres texto a un lado y carrusel al otro */
}

.news-text {
  margin-bottom: 20px; /* Espacio entre el texto y el carrusel */
}

.news-carousel {
  width: 100%;
}

.swiper-container {
  width: 100%;
  height: 300px; /* Ajusta la altura según tus necesidades */
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}