/* satirical sex */

.post {
  padding: 20px;
}

.post .post-img {
  width: 30%;
}

.post h2 {
  padding: 0px 20px;
  margin: 0;
}

.posts-container {
width: 60%
display: grid;
  padding: 10px;
  margin-top: 20px;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 25px;
}

.posts-container > :nth-child(even){
  margin-top: 50px;
}

.posts-container .post-card {
  min-height: 60vh;
  padding-top: 20px;
  padding-bottom: 40px;
  border-radius: 50px;
  border: 1px solid #000;
}

.posts-container .post-card  p {
  font-size: 14pt;
  text-align: justify;
  margin: 0;
}

.post-card .content{
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap:20px;
}

.posts-container .post-card  h1{
  font-size: 30pt;
  margin-bottom: 2px;
  margin-top: 0;
  font-weight: 100;
  font-style: italic;
}

.author-details{
  width: 200px;
  margin-left: 80px;
  padding-top: 100px;
}

.author-details h3, .author-details h2{
  margin:0;padding:0;
  font-weight: 0 !important;
}

.author-details h3{
  font-size: 25pt;
  font-weight: 100;
}

.author-details h2{
  float:right;
  font-size: 49pt;
}

.heading{
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-radius: 80px;
  border-top-left-radius: 0;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: end;
  border-bottom-left-radius: 0;
  width: 60%;
}

.heading h1{
  margin:0;
  padding:0;
  font-size: 50pt;
}

.heading img{
  width:60%;
  margin-left: auto;
  margin-right: 25px;
}

.font-normal{
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  padding-bottom:20px;
}

.header{
  display: flex;
  gap:50px;
  align-items: center;
  justify-content: space-between;
}

.header p{
  font-size: 20pt;
  width: 50%;
}

/* Frist Breakpoint */

@media screen and (max-width:980px) {
  .posts-container,
  .posts-container .content{
    grid-template-columns: 1fr
  }
}