.tod-container {
    margin-right: 10px;
    border-left: 5px solid #00cc00 !important;
	border-radius: 8px;
    padding: 5px 5px 30px 40px;
    width: auto;
    box-shadow: 5px 5px 0 rgba(19, 64, 79, .1);
    position: relative;
    background-color: #fff;
    border: 0px solid #ccc;
}

.tod-quote {
    position: absolute;
    top: -9px;
    left: 10px;
    font-family: Georgia, sans-serif;
    font-size: 5rem !important;
    line-height: 1;
    color: #2ebe7e;
    margin: 0;
}

.tod-thoughts {
    margin: 0 0 0 5px; /* Offset to align with quote mark */
    font-family: Alata, sans-serif;
    font-size: 1.3rem !important;
    color: #333;
    line-height: 1.2;
}

.tod-author {
    display: flex;
    align-items: center;
    margin-top: 5px;
    position: relative;
    margin: 10px 0px 5px 10px;
}

.tod-author-name {
    margin: 0 5px 0 0;
    font-style: italic;
    font-size: 1em;
    color: #000;
}

.tod-author-image {
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    vertical-align: middle;
}

.tod-date {
    position: absolute;
    bottom: 5px;
    right: 20px !important;
    margin: 0;
    font-size: 0.8em;
    color: #666;
}

/* Media query for screens up to 768px (tablets and smaller) */
@media (max-width: 768px) {
    .tod-container {
        padding: 10px 0 30px 20px;
        margin-right: 0;
    }

    .tod-quote {
        top: -5px;
        left: 5px;
        font-size: 1.5rem;
    }

    .tod-thoughts {
        margin-left: 15px;
        font-size: 1.2rem;
		margin-right: 10px !important;
    }

    .tod-author {
        flex-direction: row;
        align-items: flex-start;
        bottom: 10px;
        left: 20px;
    }

    .tod-author-name {
        margin: 0 5px 5px 0;
    }

    .tod-author-image {
        width: 40px;
        height: 40px;
    }

    .tod-date {
        position: static;
        text-align: right;
        margin-right: 15px !important;
        font-size: 0.7em;
    }
}

/* Media query for screens between 450px and 768px (small tablets) */
@media only screen and (min-width: 450px) and (max-width: 768px) {
    .tod-container {
        max-width: 100%;
        padding: 15px 0 35px 25px;
    }

    .tod-quote {
        font-size: 1.2rem;
    }

    .tod-thoughts {
        font-size: 1rem;
        margin-left: 15px;
    }

    .tod-author-image {
        width: 35px;
        height: 35px;
    }

    .tod-date {
        margin-top: 8px;
    }
}

/* Media query for screens up to 450px (small mobile devices) */
@media (max-width: 450px) {
    .tod-container {
        padding: 5px 0 10px 15px;
        margin-right: 0;
    }

    .tod-quote {
        top: -3px;
        left: 3px;
        font-size: 1rem;
    }

    .tod-thoughts {
        margin-left: 30px;
        font-size: 0.9rem;
    }

    .tod-author {
        bottom: 0px;
        left: 15px;
    }

    .tod-author-name {
        font-size: 0.9em;
    }

    .tod-author-image {
        width: 25px;
        height: 25px;
    }

    .tod-date {
        font-size: 0.6em;
        margin-top: 5px;
    }
}

/* Media query for screens above 769px (desktops and larger) */
@media (min-width: 769px) {
    .tod-container {
        max-width: 400px;
    }

    .tod-quote {
        font-size: 2rem;
    }

    .tod-thoughts {
        font-size: 1.5rem;
    }

    .tod-author-image {
        width: 35px;
        height: 35px;
    }

    .tod-date {
        right: 45px;
    }
}