/* Pretty */
body.dropcase-pretty .post-content > p:first-of-type::first-letter {
    font-size: 4rem;
    font-weight: bold; 
    float: left;
    margin-right: 10px;
    margin-top: 8px;
    line-height: 1;
    border: solid 1px var(--body-text-color);
    border-radius: 2px;
    padding: 10px;
}

/* Bold */
body.dropcase-bold .post-content > p:first-of-type::first-letter {
    font-size: 4rem;
    font-weight: bold; 
    float: left;
    margin-right: 10px;
    margin-top: 8px;
    line-height: 1;
    color: var(--site-background-color);
    background-color: var(--body-text-color);
    border-radius: 3px;
    padding: 10px;
}

/* Casual */
body.dropcase-casual .post-content > p:first-of-type::first-letter {
    font-size: 3.7rem;
    font-weight: bold; 
    float: left;
    margin-right: 10px;
    margin-top: 8px;
    line-height: 1
}

@media (max-width:768px) {
    body.dropcase-casual .post-content > p:first-of-type::first-letter {
        font-size: 3.3rem;
    }

    body.dropcase-bold .post-content > p:first-of-type::first-letter,
    body.dropcase-pretty .post-content > p:first-of-type::first-letter {
        font-size: 3.6rem;
    }
}

@media (max-width:480px) {
    body.dropcase-casual .post-content > p:first-of-type::first-letter {
        font-size: 3.1rem;
        margin-right: 8px;
    }

    body.dropcase-bold .post-content > p:first-of-type::first-letter,
    body.dropcase-pretty .post-content > p:first-of-type::first-letter {
        font-size: 3.2rem;
    }
}