/*
Theme Name: Hossein Mansourian
Theme URI: https://hosseinmansourian.com
Author: Hossein Mansourian
Description: Personal website and blog theme for Business Consultant.
Version: 1.0.0
Text Domain: hossein-mansourian
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --border: 214.3 31.8% 91.4%;
    --radius: 0.5rem;
    --orange-500: 24.6 95% 53.1%;
    --orange-400: 24.5 94.8% 65.3%;
    --amber-500: 43.3 96.4% 56.3%;
    --amber-400: 43.5 95.5% 67.8%;
}

html.dark,
:root.dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
}

body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, hsl(0 0% 96%), hsl(0 0% 94%), hsl(0 0% 90%));
    color: hsl(var(--foreground));
    min-height: 100vh;
    transition: background-color 0.5s, color 0.5s;
}

html.dark body {
    background: linear-gradient(to bottom right, hsl(0 0% 0%), hsl(0 0% 4%), hsl(0 0% 8%));
}

/* Container */
.container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 5rem 1rem;
    }
}

/* Section */
.section {
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .section {
        margin-bottom: 6rem;
    }
}

/* Card */
.card {
    border: none;
    border-radius: 1rem;
    backdrop-filter: blur(2rem);
    transition: all 0.5s;
}

html.light .card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html.dark .card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(251, 146, 60, 0.1);
}

.card-content {
    padding: 2rem;
}

@media (min-width: 768px) {
    .card-content {
        padding: 3rem;
    }
}

/* Theme Toggle */
.theme-toggle-container {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 50;
}

.theme-toggle {
    padding: 0.75rem;
    border-radius: 1rem;
    backdrop-filter: blur(1rem);
    border: 1px solid;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

html.light .theme-toggle {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

html.light .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.2);
}

html.dark .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

html.dark .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.theme-toggle .icon {
    width: 1.25rem;
    height: 1.25rem;
    display: none;
}

html.light #moon-icon,
html.dark #sun-icon {
    display: block;
}

html.light #moon-icon {
    color: hsl(24.5 94.8% 65.3%);
}

html.dark #sun-icon {
    color: hsl(24.5 94.8% 65.3%);
}

/* Hero Section */
.hero-section {
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .hero-section {
        margin-bottom: 6rem;
    }
}

.hero-card {
    border: none;
}

html.dark .hero-card {
    box-shadow: 0 25px 50px -12px rgba(251, 146, 60, 0.1);
}

.hero-content {
    padding: 2rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 3rem;
    }
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

/* Profile Image */
.profile-image-wrapper {
    position: relative;
}

.profile-image-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(2rem);
    transition: all 0.5s;
}

html.light .profile-image-glow {
    background: linear-gradient(to right, hsl(24.5 94.8% 65.3%), hsl(43.5 95.5% 67.8%));
    opacity: 0.3;
}

html.dark .profile-image-glow {
    background: linear-gradient(to right, hsl(24.6 95% 53.1%), hsl(43.3 96.4% 56.3%));
    opacity: 0.4;
}

.profile-image-container {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .profile-image-container {
        width: 10rem;
        height: 10rem;
    }
}

.profile-image-container:hover {
    transform: scale(1.05);
}

html.light .profile-image-container {
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html.dark .profile-image-container {
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 25px 50px -12px rgba(251, 146, 60, 0.2);
}

.profile-image {
    width: 100%;
    height: 123%;
    object-fit: cover;
}

/* Hero Text */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

html.light .hero-title {
    color: hsl(0 0% 9%);
}

html.dark .hero-title {
    color: hsl(0 0% 100%);
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .badges {
        font-size: 1rem;
    }
}

.badge {
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.2);
}

html.light .badge {
    color: hsl(0 0% 40%);
}

html.dark .badge {
    color: hsl(0 0% 82%);
}

.hero-tagline {
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 42rem;
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 1.25rem;
    }
}

html.light .hero-tagline {
    color: hsl(0 0% 40%);
}

html.dark .hero-tagline {
    color: hsl(0 0% 63%);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 1rem;
    background: linear-gradient(to right, hsl(24.6 95% 53.1%), hsl(43.3 96.4% 56.3%));
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(251, 146, 60, 0.3);
}

.cta-button .icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.cta-button:hover .icon {
    transform: translateX(0.25rem);
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
}

html.light .icon-box {
    background: hsl(24.6 95% 53.1% / 0.1);
    border-color: hsl(24.6 95% 53.1% / 0.2);
}

html.dark .icon-box {
    background: hsl(24.6 95% 53.1% / 0.2);
    border-color: hsl(24.6 95% 53.1% / 0.3);
}

.icon-box .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(24.6 95% 53.1%);
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

html.light .section-title {
    color: hsl(0 0% 9%);
}

html.dark .section-title {
    color: hsl(0 0% 100%);
}

/* About Content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.75;
}

html.light .about-text {
    color: hsl(0 0% 25%);
}

html.dark .about-text {
    color: hsl(0 0% 82%);
}

.highlight {
    color: hsl(24.6 95% 53.1%);
    font-weight: 600;
}

/* Services Section */
.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-header .section-title {
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
}

html.light .section-subtitle {
    color: hsl(0 0% 40%);
}

html.dark .section-subtitle {
    color: hsl(0 0% 63%);
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(2rem);
    transition: all 0.5s;
    border: 1px solid;
    text-decoration: none;
    color: inherit;
}

@media (min-width: 768px) {
    .service-card {
        padding: 2rem;
    }
}

.service-card:hover {
    transform: scale(1.05);
}

html.light .service-card {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.1);
}

html.light .service-card:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html.dark .service-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

html.dark .service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 25px 50px -12px rgba(251, 146, 60, 0.1);
}

.service-icon-box {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    transition: all 0.3s;
}

html.light .service-icon-box {
    background: hsl(24.6 95% 53.1% / 0.1);
    border-color: hsl(24.6 95% 53.1% / 0.2);
}

html.dark .service-icon-box {
    background: hsl(24.6 95% 53.1% / 0.2);
    border-color: hsl(24.6 95% 53.1% / 0.2);
}

.service-card:hover .service-icon-box {
    background: hsl(24.6 95% 53.1% / 0.3);
}

.service-icon-box .icon {
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(24.6 95% 53.1%);
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
}

html.light .service-title {
    color: hsl(0 0% 9%);
}

html.dark .service-title {
    color: hsl(0 0% 100%);
}

.service-description {
    font-size: 0.875rem;
    line-height: 1.75;
}

html.light .service-description {
    color: hsl(0 0% 40%);
}

html.dark .service-description {
    color: hsl(0 0% 63%);
}

/* Resume Card */
.resume-card {
    border: none;
}

html.light .resume-card {
    background: linear-gradient(to right, hsl(24.6 95% 53.1% / 0.1), hsl(43.3 96.4% 56.3% / 0.1));
    border: 1px solid hsl(24.6 95% 53.1% / 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html.dark .resume-card {
    background: linear-gradient(to right, hsl(24.6 95% 53.1% / 0.1), hsl(43.3 96.4% 56.3% / 0.1));
    border: 1px solid hsl(24.6 95% 53.1% / 0.2);
    box-shadow: 0 25px 50px -12px rgba(251, 146, 60, 0.1);
}

.resume-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .resume-content {
        flex-direction: row;
    }
}

.resume-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .resume-text {
        text-align: right;
    }
}

.resume-title {
    font-size: 1.5rem;
    font-weight: bold;
}

@media (min-width: 768px) {
    .resume-title {
        font-size: 1.875rem;
    }
}

html.light .resume-title {
    color: hsl(0 0% 9%);
}

html.dark .resume-title {
    color: hsl(0 0% 100%);
}

.resume-subtitle {
    font-size: 1rem;
}

html.light .resume-subtitle {
    color: hsl(0 0% 40%);
}

html.dark .resume-subtitle {
    color: hsl(0 0% 63%);
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid;
}

.download-button:hover {
    transform: scale(1.05);
}

html.light .download-button {
    background: hsl(0 0% 9%);
    color: white;
    border-color: transparent;
}

html.light .download-button:hover {
    background: hsl(0 0% 11%);
}

html.dark .download-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

html.dark .download-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.download-button .icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.download-button:hover .icon {
    transform: translateY(0.25rem);
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.social-card {
    display: block;
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(1rem);
    border: 1px solid;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.social-card:hover {
    transform: scale(1.05);
}

html.light .social-card {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.1);
}

html.light .social-card:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html.dark .social-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

html.dark .social-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 25px 50px -12px rgba(251, 146, 60, 0.1);
}

.social-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

html.light .social-icon-box {
    background: hsl(24.6 95% 53.1% / 0.1);
}

html.light .social-card:hover .social-icon-box {
    background: hsl(24.6 95% 53.1% / 0.2);
}

html.dark .social-icon-box {
    background: hsl(24.6 95% 53.1% / 0.2);
}

html.dark .social-card:hover .social-icon-box {
    background: hsl(24.6 95% 53.1% / 0.3);
}

.social-icon-box .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(24.6 95% 53.1%);
}

.social-name {
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
}

html.light .social-name {
    color: hsl(0 0% 25%);
}

html.dark .social-name {
    color: hsl(0 0% 82%);
}

/* Contact Form Section */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

html.light .form-label {
    color: hsl(0 0% 9%);
}

html.dark .form-label {
    color: hsl(0 0% 100%);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-textarea {
    resize: vertical;
}

html.light .form-input,
html.light .form-textarea {
    border-color: rgba(0, 0, 0, 0.2);
    color: hsl(0 0% 9%);
}

html.light .form-input:focus,
html.light .form-textarea:focus {
    border-color: hsl(24.6 95% 53.1%);
    outline: none;
    box-shadow: 0 0 0 2px hsl(24.6 95% 53.1% / 0.2);
}

html.dark .form-input,
html.dark .form-textarea {
    border-color: rgba(255, 255, 255, 0.2);
    color: hsl(0 0% 100%);
}

html.dark .form-input:focus,
html.dark .form-textarea:focus {
    border-color: hsl(24.6 95% 53.1%);
    outline: none;
    box-shadow: 0 0 0 2px hsl(24.6 95% 53.1% / 0.2);
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.75rem;
    background: linear-gradient(to right, hsl(24.6 95% 53.1%), hsl(43.3 96.4% 56.3%));
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(251, 146, 60, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-button .icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-bottom: 2rem;
    text-align: center;
}

.footer-divider {
    height: 1px;
    margin-bottom: 2rem;
    background: linear-gradient(to right, transparent, rgba(251, 146, 60, 0.2), transparent);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

html.light .footer-title {
    color: hsl(0 0% 9%);
}

html.dark .footer-title {
    color: hsl(0 0% 100%);
}

.footer-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
}

html.light .footer-subtitle {
    color: hsl(0 0% 40%);
}

html.dark .footer-subtitle {
    color: hsl(0 0% 63%);
}

.footer-copyright {
    font-size: 0.875rem;
}

html.light .footer-copyright {
    color: hsl(0 0% 40%);
}

html.dark .footer-copyright {
    color: hsl(0 0% 63%);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    color: white;
    font-weight: 500;
    transform: translateY(150%);
    transition: transform 0.3s;
    z-index: 100;
}

html.light .toast {
    background: hsl(0 0% 9%);
}

html.dark .toast {
    background: linear-gradient(to right, hsl(24.6 95% 53.1%), hsl(43.3 96.4% 56.3%));
}

.toast.show {
    transform: translateY(0);
}

/* Blog List Styles */
.blog-section {
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    overflow: hidden;
    backdrop-filter: blur(2rem);
    transition: all 0.5s;
    border: 1px solid;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

html.light .blog-card {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.1);
}

html.light .blog-card:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html.dark .blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

html.dark .blog-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 25px 50px -12px rgba(251, 146, 60, 0.1);
}

.blog-thumbnail-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-thumbnail {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
}

.blog-meta {
    font-size: 0.875rem;
    display: flex;
    gap: 1rem;
}

html.light .blog-meta {
    color: hsl(0 0% 40%);
}

html.dark .blog-meta {
    color: hsl(0 0% 63%);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: auto;
}

html.light .blog-title {
    color: hsl(0 0% 9%);
}

html.dark .blog-title {
    color: hsl(0 0% 100%);
}

.blog-excerpt {
    font-size: 0.875rem;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

html.light .blog-excerpt {
    color: hsl(0 0% 40%);
}

html.dark .blog-excerpt {
    color: hsl(0 0% 63%);
}

.blog-read-more {
    margin-top: 1rem;
    font-weight: 500;
    color: hsl(24.6 95% 53.1%);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-read-more svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(-0.25rem);
}

/* Single Post */
.single-post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.single-post-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .single-post-title {
        font-size: 2.5rem;
    }
}

.single-post-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.entry-content {
    line-height: 1.8;
    font-size: 1.125rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.entry-content h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.entry-content ul, 
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* WP Classes */
.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid;
    text-decoration: none;
    transition: all 0.3s;
}

html.light .page-numbers {
    border-color: rgba(0,0,0,0.1);
    color: hsl(0 0% 9%);
}

html.light .page-numbers.current,
html.light .page-numbers:hover {
    background: hsl(24.6 95% 53.1%);
    border-color: hsl(24.6 95% 53.1%);
    color: white;
}

html.dark .page-numbers {
    border-color: rgba(255,255,255,0.1);
    color: hsl(0 0% 100%);
}

html.dark .page-numbers.current,
html.dark .page-numbers:hover {
    background: hsl(24.6 95% 53.1%);
    border-color: hsl(24.6 95% 53.1%);
    color: white;
}
