.posts {
  body {
    background: #fefefe;
  }

  h1 {
    font-size: 3rem;
    font-weight: 700;
    text-align: left;
    /* Align left */
    color: #000;
    /* Text color */
    letter-spacing: 1px;
    /* Improve readability */
    margin: 30px 0;
    /* Add more spacing */
    padding: 10px 20px;
    /* Adjust padding to provide spacing */

    /* Glassy background */
    background-color: rgba(93, 91, 91, 0.1);
    Semi-transparent background backdrop-filter: blur(10px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    border-radius: 10px;
    /* Slightly rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Soft shadow for depth */
  }

  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border: none;
    margin: 20px;
  }

  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.4);
  }

  .card a {
    color: initial;
  }

  .card a:hover {
    text-decoration: initial;
  }

  .card .text-muted i {
    margin: 0 10px;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 5px 15px;
    color: #000;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
  }

  .card-title:hover {
    margin-bottom: .75rem;
    /* font-family: inherit; */
    font-weight: 500;
    line-height: 1.2;
    /* color: black; */
  }

  .card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: auto;
  }
}

.individual-posts {
  margin: 30px 0;

  .social-icon-sm {
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 50%;
    display: inline-block;
  }

  .social-icon-sm i {
    margin-right: 0;
  }

  .post-meta {
    margin-bottom: 20px;
  }

  .media {
    display: flex;
    align-items: center;
  }

  img.rounded-circle {
    object-fit: cover;
  }

  .post-content h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .post-content p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}