/* MAIN CONTENT STYLES */
/* CAROUSEL */

/* CARDS */
#blog-posts {
  width:100%;
  display:flex;
  flex-direction: column;
  padding-bottom:50px;
}

.content-title {
  display: flex;
  font-size: 40px;
  padding-top: 50px;
  padding-bottom: 20px;
  width: 90%;
  align-self: center;
  justify-content: center;
  text-align: center;
}

@media screen and (max-width: 350px) {
  .content-title {
  font-size:28px;
}

}

#posts {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#posts-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 20px;
}

.card-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 20px;
}

.post-card-grid {
  display: grid;
  grid-template-columns:  repeat(auto-fit, minmax(290px, 1fr));
  grid-gap: 1rem;
}

.post-card-grid > div {
  padding: 1.5rem;
  border-radius: 1rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  padding:20px;
  background-color: white;
  border-radius: 10px;
  border-style: solid;
  border-color: rgba(0,0,0,0.15);
}
.post-card-image {
  object-fit: cover;
  display: flex;
  width: 100%;
  height: 250px;
  border-radius: 10px;
  margin-bottom:30px;
}

.post-card-video {
  object-fit: cover;
  display: flex;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.post-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.post-card-title {
  font-size: 34px;
}

.post-card-title-container {
  height: 150px;

}

.post-card-subtitle {
  font-size: 22px;
  text-align: center;
}



.post-card-price {
  font-size: 24px;
  color: #E30A17;
}

.post-card-texts {
  margin:0 10px 10px 10px;
  text-align:center;
}

.post-card-description {
  font-size: 20px;
  margin-bottom:50px;
}

.post-action-button {
  width:60%;
  height: 80px;
  font-size: 24px ;
}

.center-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.all-posts-button {
  width:90%;
  max-width:330px;
  height: 77px;
  font-size: 24px;
  text-align:center;
}

.background-color-1 {
  background-color: rgba(0, 0, 204, 0.05);
}

/* END CARDS */