@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

a {
  text-decoration: none;
  color: #262626;
}

* {
  font-family: "Poppins";
  margin: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid #ebeaeb;
  box-shadow: 0.5px 0.5px 4px rgba(0, 0, 0, 0.03),
    -0.5px -0.5px 4px rgba(0, 0, 0, 0.03);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.socials {
  display: flex;
  border-radius: 50%;
}

.fa-brands {
  font-size: 1.5rem;
  margin: 0 0.4rem;
}

/* ! Post Card */

.post {
  margin: 1rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 90%;
  margin: auto;
  font-family: Arial, sans-serif;
}

.post-image {
  position: relative;
  width: 100%;
}

.post-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.post-label {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: red;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
}

.post-details {
  padding: 1rem;
}

.post-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: gray;
  flex-wrap: wrap;
}

.post-info span {
  margin-right: 0.5rem;
}

.post-number {
  color: red;
  font-weight: bold;
}

.post-favorite {
  font-size: 1.5rem;
  color: black;
}

.post-title {
  font-size: 1.2rem;
  margin: 0.3rem 0;
}

.post-description {
  font-size: 0;
}

.post-meta {
  font-size: 0.8rem;
  display: flex;
}
.post-meta span:nth-child(2) {
  margin: 0 1rem;
}

/* ! Different Views  */

/* Tablet Styles */
@media (min-width: 768px) {
  .post-card {
    flex-direction: row;
    max-width: 90%;
    margin: 1.5rem auto;
  }

  .post-image {
    flex-basis: 40%;
    height: auto;
  }

  .post-image img {
    height: 100%;
  }

  .post-details {
    flex-basis: 60%;
    padding: 1.5rem;
  }

  .post-title {
    font-size: 1.5rem;
  }

  .post-description {
    font-size: 1rem;
  }

  .post-meta {
    font-size: 1rem;
  }
}

/* PC Styles */
@media (min-width: 1024px) {
  .post-card {
    max-width: 800px;
  }

  .post-title {
    font-size: 1.8rem;
  }

  .post-description {
    font-size: 1.1rem;
  }

  .post-meta {
    font-size: 1.1rem;
  }
}
