/* Import Google Fonts: Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Basic Reset & Body */
.vspeak-minimal-container * {
    box-sizing: border-box;
}

.vspeak-minimal-container {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    width: 100%;
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

/* Article Header */
.vspeak-minimal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.vspeak-minimal-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
    color: #222;
    margin: 0 0 1rem 0;
}

.vspeak-minimal-meta {
    font-size: 15px;
    color: #666;
}

.vspeak-minimal-separator {
    margin: 0 0.5rem;
}

/* Featured Image */
.vspeak-minimal-featured-image {
    margin: 0 0 3rem 0;
}

.vspeak-minimal-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Article Content */
.vspeak-minimal-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.vspeak-minimal-content p {
    margin-bottom: 1.8em;
}

.vspeak-minimal-content a {
    color: #007bff;
    text-decoration: underline;
}

.vspeak-minimal-content a:hover {
    color: #0056b3;
}

.vspeak-minimal-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 3rem 0 1.5rem 0;
    line-height: 1.4;
}

.vspeak-minimal-content ul,
.vspeak-minimal-content ol {
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
}

.vspeak-minimal-content blockquote {
    margin: 2.5rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #ddd;
    font-size: 18px;
    font-style: italic;
    color: #555;
}

.vspeak-minimal-content img {
    max-width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
}

/* Author Box */
.vspeak-minimal-author-box {
    display: flex;
    align-items: flex-start;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.vspeak-minimal-author-avatar {
    margin-right: 20px;
}

.vspeak-minimal-author-avatar img {
    border-radius: 50%;
}

.vspeak-minimal-author-heading {
    margin: 0 0 0.5rem 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.vspeak-minimal-author-description {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .vspeak-minimal-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .vspeak-minimal-title {
        font-size: 34px;
    }

    .vspeak-minimal-content {
        font-size: 17px;
    }

    .vspeak-minimal-content h3 {
        font-size: 24px;
    }

    .vspeak-minimal-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vspeak-minimal-author-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}