.heading_class{
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1f2937;
}
.post_description{
    font-family: Arial, sans-serif; /* Normal font */
    font-size: 16px; /* Optional */
    white-space: pre-wrap; /* Preserve line breaks and wrap long lines */
    word-wrap: break-word; /* Ensure words wrap if they're too long */
    overflow-wrap: break-word; /* Fallback for older browsers */
}
.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
@media only screen and (max-width:767px) {
    .heading_class{
        font-size: 2rem;
    }
}
@media only screen and (max-width:400px) {
    .heading_class{
        font-size: 1.5rem;
    }
}
  
.featured-post {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
 }
  
.featured-post-img {
    height: 400px;
    object-fit: cover;
}
  
.featured-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: var(--white);
}

.view-all-link {
    text-decoration: none;
    color: #007bff;
    display: inline-flex;
    align-items: center;
}

.view-all-link i {
    margin-left: 5px;
    position: relative;
    animation: arrow-move 1s infinite alternate ease-in-out;
}

@keyframes arrow-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(5px);
    }
}
