.pc-feed {
  margin:  auto;
  display: flex;
}
.row-feed { /* IE10 */
  display: flex !important;
  flex-grow: 1;
  margin: auto;
  width: 65%;
}

.posts-row {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding-bottom: 50px !important;
}

.interact {
  align-items: flex-start;
  flex-wrap: wrap;
}

.bottom-left-text-featured {
  color: #fff;
  align-self: flex-end;
  margin: 15px;
  text-align: left;
}



#heart-like {
  color: rgba(255, 255, 255, 1);
  font-size: 3rem;
  margin: 15px;
  filter: brightness(100%);
}

.col-principal, .post-one, .post-two, .card {
  z-index: 0; /* O un valor menor que el z-index de .new-post y .pfloating */
}

.col-principal {
  display: flex;
  background-size: cover;
  border-radius: 10px;
  height: 510px;
  width: 50%;
  transition: all .2s ease-in-out;
  &:hover {
    filter: brightness(0.5);
  }
}
.col-secondary {
  display: grid;
  height: 510px;
  width: 50%;
}
.post-one {
  display: flex;
  background-size: cover;
  border-radius: 10px;
  margin-left: 8px;
  margin-bottom: 8px;
  width: 98%;
  transition: all .2s ease-in-out;
  &:hover {
    filter: brightness(0.5);
    z-index: 0;
  }
}
.post-two {
  display: flex;
  background-size: cover;
  border-radius: 10px;
  margin-left: 8px;
  width: 98%;
  transition: all .2s ease-in-out;
  &:hover {
    filter: brightness(0.5);
    z-index: 0;
  }
}

.masthead {
  background-color: #005b75;
}

.masthead p, .masthead p a {
  color: white;
}

.site-title {
  color: white;
}

.thumbnail img {
  display: block;
  border: 0;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 40px;
}


.card {
  background: rgba(255, 231, 189, 0.5); /* Blanco con 50% de opacidad */
  backdrop-filter: blur(10px); /* Efecto borroso */
  margin-bottom: 2em;
  border-radius: 40px;
  transition: all .2s ease-in-out;
  &:hover {
    /*move to Y*/
    transform: translateY(-30px);
    box-shadow: rgb(46, 27, 0, 0.4) 0px 5px, rgb(46, 27, 0, 0.3) 0px 10px, rgb(46, 27, 0, 0.2) 0px 15px, rgb(46, 27, 0, 0.1) 0px 20px, rgb(46, 27, 0, 0.05) 0px 25px;
    z-index: 0;
  }
}

.card a {
  color: black;
  text-decoration: none;
}

.card a:hover {
  box-shadow: 3px 3px 8px hsl(0, 0%, 80%);
  z-index: 0;
}

.card-content {
  padding: 1.4em;
}

.card-content h2 {
  margin-top: 0;
  margin-bottom: .5em;
  font-weight: bold;
}

.card-content p {
  font-size: 80%;
}

/* Flexbox stuff */

.cards {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}

.card {
  margin-top: 4px;
  margin-bottom: 4px;
  flex: 0 1 24%;
  /* break line of large words*/
  word-break: break-word;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .pc-feed {
    display: grid;
  }
}
@media screen and (max-width: 700px) {
  #img-in-featured {
    left: 10px !important;
    bottom: 10px !important;
    display: none !important;
  }
  .row-feed {
    display: grid !important;
    width: 90%;
  }
  .col-principal {
    display: grid;
    width: 100%;
    height: 500px;
  }
  .col-secondary {
    display: flex;
    width: 100%;
    height: 200px;
  }

  .post-one {
    margin: 0;
    margin-right: 4px !important;
    margin-top: 8px;
    width: 70%;
  }
  .post-two {
    margin: 0;
    margin-left: 4px !important;
    margin-top: 8px;
    width: 70%;
  }
}

.posts-row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
  margin: auto;
}

/* Create four equal columns that sits next to each other */
.posts-column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 23%;
  padding: 0 4px;
  margin: 0 auto;
}

.posts-column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  border-radius: 20px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .posts-column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 48%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .thumbnail img {
    width: 150px;
  }
  .posts-column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 45%;
  }
}

@media screen and (max-width: 355px) {
  .cards {
    width: 90% !important;
    display: grid !important;
    grid-row-gap: 1px;
    grid-column-gap: 9px;
  }
  .card {
    width: 100% !important;
  }
  .thumbnail img {
    width: 100%;
  }
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: stretch;
  }
  .card {
    width: 150px;
  }
  .column-feed {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}
