.note-card {
    background: #fffef8;
    border: 1px solid #e2dfd2;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    font-family: "Comic Neue", cursive;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
}

.note-title {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 380;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
}

.note-date {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.note-content p {
    margin-bottom: 1rem;
}

/* style for figures in blog posts */
.note-card figure {
    background: #fffef8;
    border: 1px solid #e2dfd2;
    border-radius: 12px;
    padding: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.note-card figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
    object-fit: cover;
}

.note-card figure figcaption {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}