h1 {
  font-family: "Prata", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
}

h2 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
}

h3 {
  font-family: "Prata", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

p {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 12.8px;
  font-style: normal;
}

/* Search input styles */
.search-container {
  max-width: 1624px;
  margin: 0 auto;
}
#search {
  width: 50%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.date {
  font-weight: 700;
  font-size: 16.8px;
  line-height: 21px;
}

.category {
  font-size: 10px;
  text-align: right;
}


/* Basic styling for the cards */
header {
  max-width: 1624px;
  margin: 0 auto;
}
.container {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1624px;
  margin: 0 auto;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* justify-content: left; */
  flex-wrap: wrap;
  min-width: 490px;
}

.card {
  display: flex;
  flex-direction: row; /* Two columns (text on the left, image on the right) */
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  width: 450px; /* Set the width of the card */
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

/* Style the text content column */
.card-content {
  flex: 1; /* Takes up remaining space on the left */
}

.card-content h3 {
  margin-top: 0;
  margin-bottom: 0;
}

.card-content p {
  margin: 5px 0;
}

/* Style the image column */
.card-negocio-image {
  margin-right: 20px;
  max-width: 120px; /* Control the width of the image */
  align-self: center; /* Vertically center the image */
}

.card-evento-image {
  margin-left: 20px;
  max-width: 120px; /* Control the width of the image */
  align-self: center; /* Vertically center the image */
}

.card-negocio-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.card-evento-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.social-links a {
  margin-right: 10px;
  text-decoration: none;
  color: #0073e6;
}

p {
  font-size: 14px;
}


@media (max-width: 1024px) {

  h3 {
    font-size: 16px;
  }

  .date {
    font-size: 13px;
  }
  header {
    text-align: center;
  }
  .search-container {
    text-align: center;
  }
  #search {
    width: 85%;
  }
  .container {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .eventos {
    text-align: center;
  }
  .negocios {
    text-align: center;
  }

  .card-container {
    justify-content: center;
  }

  .card {
    text-align: left;
    border-radius: 8px;
    padding: 15px 10px;
    width: 345px;
  }
}