.cursor-pointer {
    cursor: pointer;
}

@font-face {
    font-family: 'morabaa';
    src: url('/fonts/AbarLowFaNum-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



a {
    text-decoration: none;
    cursor: pointer;
}

span,
small,
strong,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: "morabaa";
}



nav a {
    text-decoration: none;
    cursor: pointer;
}

.bottom-header ul li {
    list-style-type: none;
}

.bottom-header ul li a {
    text-decoration: none;
}





@media (min-width: 576px) {
    .header-menu {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 768px) {}

@media (min-width: 992px) {

    nav .offcanvas-start,
    nav .offcanvas-body {
        display: contents !important;
        visibility: visible;
    }

    .header-menu {
        display: flex;
        flex-direction: row;
    }





}

@media (min-width: 1200px) {}

@media (min-width: 1400px) {}

.card {
    overflow: hidden;
    border-radius: 8px;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.post-image {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .post-image {
    transform: scale(1.05);
}

.post-title {
    font-size: 1.4rem;
    text-decoration: none;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 6px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(0, 0, 0, 0.7);
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        transparent 100%);
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.post-title:hover {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.8) 50%, 
        transparent 100%);
    text-shadow: 
        0 2px 15px rgba(0, 0, 0, 0.95),
        0 0 35px rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}