.page {
    max-width: 800px;
    margin: 0 auto
}

body {
    background-color: #f5f3f0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body[data-theme="dark"] {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

body[data-theme="dark"] h1,
body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] .Experience-title {
    color: #f0f0f0;
}

body[data-theme="dark"] p,
body[data-theme="dark"] .intro,
body[data-theme="dark"] .Experience-date,
body[data-theme="dark"] .Experience-description {
    color: #b0b0b0;
}

body[data-theme="dark"] a {
    color: #d0d0d0;
}

body[data-theme="dark"] .Experience-Row,
body[data-theme="dark"] .project-card {
    background-color: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .experience-block {
    background-color: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .tech-tag,
body[data-theme="dark"] .project-link {
    background-color: rgba(255, 255, 255, 0.08);
    color: #d0d0d0;
}

body[data-theme="dark"] .view-all-link {
    background-color: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.15);
    color: #d0d0d0;
}

body[data-theme="dark"] .Resume {
    border-color: #f0f0f0;
    color: #f0f0f0;
}

body[data-theme="dark"] .company-logo,
body[data-theme="dark"] .education-logo {
    background-color: rgba(255, 255, 255, 0.06);
    color: #f0f0f0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #000;
}

body[data-theme="dark"] .nav-link {
    color: #d0d0d0;
}

body[data-theme="dark"] .nav-link:hover {
    color: #fff;
}

.header-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #333;
    transition: all 0.2s ease;
    text-decoration: none;
}

.header-social:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

body[data-theme="dark"] .header-social {
    color: #d0d0d0;
}

body[data-theme="dark"] .header-social:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-email {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.header-email:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

body[data-theme="dark"] .header-email {
    color: #d0d0d0;
}

body[data-theme="dark"] .header-email:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-email .copied {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(33, 32, 32, 0.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    pointer-events: none;
}

.header-resume {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #333;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.header-resume:hover {
    background-color: #000;
    transform: translateY(-2px);
}

body[data-theme="dark"] .header-resume {
    background-color: #f0f0f0;
    color: #1a1a1a;
}

body[data-theme="dark"] .header-resume:hover {
    background-color: #fff;
}

.theme-toggle {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .theme-toggle {
    border-color: rgba(255, 255, 255, 0.2);
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

body[data-theme="dark"] .theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

body[data-theme="dark"] .sun-icon {
    display: none;
}

body[data-theme="dark"] .moon-icon {
    display: block;
}

/* Hero Section */
.hero-section {
    margin-bottom: 60px;
}

.hero-background {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
}

.profile-section {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    margin: 0 0 16px 0;
    font-size: 2.5rem;
    font-weight: 600;
}

.profile-info .intro {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.profile-info .intro a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #667eea;
    transition: all 0.2s ease;
}

.profile-info .intro a:hover {
    color: #5568d3;
    border-bottom-color: #5568d3;
    background-color: rgba(102, 126, 234, 0.05);
    padding: 2px 4px;
    margin: -2px -4px;
    border-radius: 3px;
}

body[data-theme="dark"] .profile-info .intro {
    color: #b0b0b0;
}

body[data-theme="dark"] .profile-info .intro a {
    color: #8b9aff;
    border-bottom-color: #8b9aff;
}

body[data-theme="dark"] .profile-info .intro a:hover {
    color: #a5b3ff;
    border-bottom-color: #a5b3ff;
    background-color: rgba(139, 154, 255, 0.1);
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-background {
        height: 180px;
    }
}

.pfp {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body[data-theme="dark"] .pfp {
    border-color: #2a2a2a;
}

h2 {
    text-align: left;
}

.footer-email .copied {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(33, 32, 32, 0.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    pointer-events: none;
}

.DocFlow {
    width: 200px;
    height: 200px;
    text-align: center;
}

footer {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body[data-theme="dark"] footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    color: #666;
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-social:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
}

body[data-theme="dark"] .footer-social {
    color: #999;
}

body[data-theme="dark"] .footer-social:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #d0d0d0;
}

.footer-text {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

body[data-theme="dark"] .footer-text {
    color: #999;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    color: #555;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.footer-email:hover {
    background-color: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
}

body[data-theme="dark"] .footer-email {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

body[data-theme="dark"] .footer-email:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

.experience-education-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    margin: 60px 0;
}

@media (max-width: 768px) {
    .experience-education-wrapper {
        grid-template-columns: 1fr;
    }
}

#Experience,
#Education {
    margin: 0;
}

.experience-block {
    background-color: #fcfbfa;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.Experience-Row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.Experience-Row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#Education .Experience-Row {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.company-logo-container {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.company-logo {
    width: 72px;
    height: 72px;
    padding: 8px;
    background-color: transparent;
    border-radius: 50%;
    object-fit: contain;
}

.education-logo {
    width: 56px;
    height: 56px;
    padding: 8px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
}

/* Dropdown Section Inside Education Block */
.dropdown-section-inner {
    margin-top: 24px;
    padding-top: 0;
}

.dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: rgba(0, 0, 0, 0.03);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .dropdown-toggle {
    background-color: rgba(255, 255, 255, 0.05);
    color: #d0d0d0;
}

.dropdown-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

body[data-theme="dark"] .dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.dropdown-toggle.active {
    background-color: rgba(0, 0, 0, 0.06);
}

body[data-theme="dark"] .dropdown-toggle.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
}

.dropdown-content.open {
    max-height: 500px;
    padding-top: 20px;
}

.dropdown-content .Experience-Row {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.Experience-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    padding-top: 4px;
}

.Experience-date {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

.Experience-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
}

.Experience-role {
    margin: 4px 0 0 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: #555;
}

body[data-theme="dark"] .Experience-role {
    color: #b0b0b0;
}

.Experience-description {
    margin: 8px 0 0 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Projects Section */
#Projects {
    margin: 60px 0;
}


.section-title {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    margin: 0 0 12px 0;
    text-transform: lowercase;
    text-align: center;
}


.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.project-card {
    background-color: #fcfbfa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 20px;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
}

.project-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tech-tag {
    padding: 4px 12px;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #555;
}

.project-links {
    display: flex;
    gap: 12px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.project-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.project-link svg {
    width: 16px;
    height: 16px;
}

.view-all-projects {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #fcfbfa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.view-all-link:hover {
    background-color: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateX(4px);
}

.view-all-link svg {
    transition: transform 0.2s ease;
}

.view-all-link:hover svg {
    transform: translateX(2px);
}

/* Personal Interests Section */
#PersonalInterests {
    margin: 80px 0 60px 0;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .interests-grid {
        grid-template-columns: 1fr;
    }
}

.interest-card {
    background-color: #fcfbfa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .interest-card {
    background-color: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
}

.interest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.interest-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.interest-icon svg {
    color: #333;
}

body[data-theme="dark"] .interest-icon svg {
    color: #d0d0d0;
}

.spotify-icon-container svg {
    color: transparent;
    fill: #1DB954;
}

body[data-theme="dark"] .spotify-icon-container svg {
    color: transparent;
}

.anilist-home-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

body[data-theme="dark"] .anilist-home-icon {
    filter: brightness(1);
}

.interest-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #333;
}

body[data-theme="dark"] .interest-title {
    color: #f0f0f0;
}

.interest-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

body[data-theme="dark"] .interest-description {
    color: #b0b0b0;
}

/* Personal Blog Section */
#PersonalBlog {
    margin: 60px 0 40px 0;
}

.blog-container {
    background-color: #fcfbfa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

body[data-theme="dark"] .blog-container {
    background-color: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
}

.blog-content {
    flex: 1;
}

.blog-title {
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    margin: 0 0 8px 0;
    text-transform: lowercase;
    color: #333;
}

body[data-theme="dark"] .blog-title {
    color: #f0f0f0;
}

.blog-description {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

body[data-theme="dark"] .blog-description {
    color: #b0b0b0;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background-color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.blog-link:hover {
    background-color: #000;
    transform: translateX(4px);
}

body[data-theme="dark"] .blog-link {
    background-color: #444;
    border-color: rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .blog-link:hover {
    background-color: #555;
}

.blog-link svg {
    transition: transform 0.3s ease;
}

.blog-link:hover svg {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

/* Blog Posts Container */
.blog-posts-container {
    max-width: 700px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post-preview {
    background-color: #fcfbfa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post-preview:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.blog-post-excerpt {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 12px 0 0 0;
}

body[data-theme="dark"] .blog-post-excerpt {
    color: #b0b0b0;
}

.blog-post {
    background-color: #fcfbfa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

body[data-theme="dark"] .blog-post-preview {
    background-color: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .blog-post-preview:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .blog-post {
    background-color: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .blog-post:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.blog-post-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body[data-theme="dark"] .blog-post-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.blog-post-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
    line-height: 1.3;
}

body[data-theme="dark"] .blog-post-title {
    color: #f0f0f0;
}

.blog-post-date {
    font-size: 0.9rem;
    color: #777;
    font-weight: 500;
}

body[data-theme="dark"] .blog-post-date {
    color: #999;
}

.blog-post-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

body[data-theme="dark"] .blog-post-content {
    color: #d0d0d0;
}

.blog-post-content p {
    margin: 0 0 16px 0;
}

.blog-post-content p:last-child {
    margin-bottom: 0;
}

.blog-post-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 24px 0 12px 0;
    color: #333;
}

body[data-theme="dark"] .blog-post-content h3 {
    color: #f0f0f0;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: #444;
}

body[data-theme="dark"] .blog-post-content ul,
body[data-theme="dark"] .blog-post-content ol {
    color: #d0d0d0;
}

.blog-post-content li {
    margin: 8px 0;
}

.blog-post-content a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.blog-post-content a:hover {
    color: #764ba2;
}

body[data-theme="dark"] .blog-post-content a {
    color: #8b9aff;
}

body[data-theme="dark"] .blog-post-content a:hover {
    color: #a5b3ff;
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 20px;
}

.blog-modal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fcfbfa;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
}

.blog-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.blog-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
}

body[data-theme="dark"] .blog-modal-content {
    background-color: #2a2a2a;
}

body[data-theme="dark"] .blog-modal-close {
    color: #b0b0b0;
}

body[data-theme="dark"] .blog-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
    display: block;
}

@media (max-width: 768px) {
    .blog-post-preview {
        padding: 24px 20px;
    }

    .blog-post-title {
        font-size: 1.4rem;
    }

    .blog-modal-content {
        padding: 24px 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}