.blog-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 50%; /* Creates a square aspect ratio */
    overflow: hidden;
}

.blog-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the square while maintaining aspect ratio */
}

.blog-date-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
}

.category-link:hover{
    color: #000000 !important;
}

.category-link.active{
    color: #47d90c !important;
    font-weight: 600;
}

.landing-green-bg{
    background-color: #47d90c !important;
    color: white !important;
    transition: background-color 0.3s ease;
    border: 1px solid #47d90c !important;
}

.btn.landing-green-bg:hover {
    background-color: #3ebf0a !important; /* Slightly darker green */
    border: 1px solid #3ebf0a !important;
}

.landing-green-outline{
    background-color: #ffffff;
    border: 1px solid #47d90c !important;
    color: #47d90c;
    transition: background-color 0.3s ease;
}

.btn.landing-green-outline:hover {
    color: white !important;
    background-color: #3ebf0a; /* Slightly darker green */
    border: 1px solid #3ebf0a !important;
}


.text-green{
    color: #47d90c;
}
.text-green:hover{
    color: #3ebf0a;
}
.text-deep-purple{
    color: #262254 !important;
}