.blog-post-card {
    cursor: pointer;
}

.blog-content {
    margin: 5rem 2rem 3rem 2rem;
}

.blog-content h1 {
    font-family: Gruppo;
    font-size: 1.8rem;
    color: var(--color-secondary-blue-gray);
}

.blog-content h2 {
    font-family: Gruppo;
    font-size: 1.7rem; /* text-3xl */
    font-weight: 700; /* font-bold */
    color: var(--color-secondary-blue-gray);
}

.blog-content p {
    font-size: 1.1rem;
}

.blog-content .toggle-container {
    border-bottom: none;
}

.blog-content .subtitle, .toggle-container .subtitle {
    font-size: x-large;
    /*font-style: italic;*/
    font-weight: bold;
    margin-right: 10px;
    font-family: Gruppo;
}

.blog-content .li-subtitle {
    color: var(--color-li-subtitle);
    font-family: Gruppo;
    font-size: larger;
    font-weight: bold;
}

.blog-content hr {
    margin-top: 1rem; 
    border: 1px solid #abb1ae42;
}

.blog-image-container {
    position: relative;
    width: 100%; 
    height: auto; 
    overflow: hidden;
    margin-bottom: 2rem;
    cursor: pointer;
}

.blog-image-container img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.blog-image-container div {
    position: absolute; 
    background-color: #49494969;/*#eaffff73;*/
    color: #fff;
}

.blog-warning {
    background-color: rgba(221, 174, 174, 0.5); 
    padding: 20px;
}

.blog-warning a {
    font-style: italic;
}

@media (max-width: 767px) {
    .blog-image-container div {
        bottom: 0.2rem; 
        left: 0rem; 
        width: calc(100% - 1rem); 
        padding: 0.5rem; 
        font-size: 90%;
    }
}

@media (min-width: 768px) {
    .blog-content {
        margin: 7rem 25% 5rem 25%;
    }

    .blog-content h1 {
        font-size: 2.5rem;
    }

    .blog-image-container {
        margin: 0rem 0rem 2rem 0rem;
    }

    .blog-image-container div {
        bottom: 3rem; 
        right: 1rem; 
        width: 80%; 
        height: auto;
        padding: 2rem;
        font-size: 1.4rem;
    }

    .blog-content p {
        font-size: 1.2rem;
    }
}