/* 
* Styles für "Die Zukunft der Robotik" Blog
* Copyright 2024
*/

/* ===== RESET & BASIS-STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #1e88e5;
    --primary-dark: #1565c0;
    --primary-light: #64b5f6;
    --accent-color: #ff4081;
    --accent-dark: #c51162;
    --accent-light: #ff80ab;
    --text-dark: #212121;
    --text-medium: #555555;
    --text-light: #757575;
    --background-light: #ffffff;
    --background-off: #f5f7fa;
    --background-grey: #eeeeee;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --border-color: #dddddd;
    --header-height: 80px;
    --footer-bg: #263238;
    --footer-text: #b0bec5;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --container-max-width: 1200px;
    --container-padding: 20px;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-off);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover, a:focus {
    color: var(--primary-dark);
    text-decoration: none;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 2rem;
}

/* ===== TYPO ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.8rem;
    margin-top: 3rem;
    margin-bottom: 1.8rem;
}

h3 {
    font-size: 2.2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-light);
}

/* ===== LAYOUT & CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: 5rem 0;
}

main {
    min-height: calc(100vh - var(--header-height) - 300px);
    padding-bottom: 4rem;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: var(--background-light);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav li {
    margin-left: 3rem;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

nav a:hover, nav a:focus, nav a.active {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

nav a:hover::after, nav a:focus::after, nav a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn:hover, .btn:focus {
    background-color: var(--primary-dark);
    color: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover, .btn.secondary:focus {
    background-color: var(--primary-color);
    color: white;
}

/* ===== HERO SECTION ===== */
.hero {
    background-color: var(--primary-dark);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: 150px;
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 4.8rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== FEATURED POSTS ===== */
.featured-posts {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

.post-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3 {
    font-size: 2rem;
    padding: 1.5rem 2rem 1rem;
    margin: 0;
}

.post-card p {
    padding: 0 2rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.post-card .read-more {
    display: inline-block;
    padding: 0 2rem 2rem;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
}

.post-card .read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.post-card .read-more:hover::after {
    transform: translateX(3px);
}

.view-all {
    text-align: center;
    margin-top: 4rem;
}

/* ===== ROBOTICS TRENDS ===== */
.robotics-trends {
    background-color: var(--background-off);
    padding: 6rem 0;
}

.robotics-trends h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.trends-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trends-text ul {
    list-style-type: none;
}

.trends-text li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.trends-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 1.6rem;
    height: 1.6rem;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.trends-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background-color: var(--primary-dark);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.newsletter h2 {
    color: white;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    font-size: 1.6rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    background-color: var(--accent-color);
}

.newsletter-form button:hover {
    background-color: var(--accent-dark);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-links h3, .footer-contact h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--footer-text);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--primary-light);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-normal);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== BLOG PAGE ===== */
.blog-header, .about-header, .contact-header {
    background-color: var(--primary-dark);
    color: white;
    padding: 6rem 0;
    text-align: center;
    background-image: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.blog-header h1, .about-header h1, .contact-header h1 {
    color: white;
}

.blog-filter {
    background-color: var(--background-light);
    padding: 2rem 0;
    box-shadow: var(--shadow-md);
    margin-bottom: 4rem;
}

.filter-options {
    display: flex;
    gap: 2rem;
}

.search-input, .category-filter {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 1.6rem;
}

.blog-posts {
    padding: 0 0 6rem;
}

.blog-posts .post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-category {
    display: inline-block;
    background-color: var(--primary-light);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 1.4rem;
    margin: 2rem 2rem 0;
}

.post-meta {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

/* ===== ABOUT PAGE ===== */
.about-mission {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.team-section {
    padding: 6rem 0;
    background-color: var(--background-off);
}

.team-section h2, .team-section > p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    margin: 2rem 0 0.5rem;
}

.team-member p {
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.achievements {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.achievements h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.achievement-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.achievement-box {
    background-color: var(--background-off);
    border-radius: var(--border-radius-md);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.achievement-box:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.achievement-box h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.partners {
    padding: 6rem 0;
    background-color: var(--background-off);
}

.partners h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.partner {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.partner img {
    height: 100px;
    width: auto;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

/* ===== CONTACT PAGE ===== */
.contact-info {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    margin-bottom: 3rem;
}

.info-icon {
    margin-right: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-text h3 {
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background-color: var(--background-off);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

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

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 1.6rem;
    transition: border-color var(--transition-fast);
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form .checkbox {
    display: flex;
    align-items: flex-start;
}

.contact-form .checkbox input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.map-section {
    padding: 6rem 0;
    background-color: var(--background-off);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
}

.faq-question h3 {
    margin: 0;
    font-size: 2rem;
}

.faq-toggle {
    font-size: 2.4rem;
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 2rem 0 0;
}

.faq-answer.active {
    max-height: 500px;
    padding-bottom: 2rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.modal-content {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.4rem;
    cursor: pointer;
}

.close-btn {
    margin-top: 2rem;
}

/* ===== BLOG POST ===== */
.blog-post {
    background-color: var(--background-light);
    padding: 6rem 0;
}

.post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.post-hero {
    margin-bottom: 4rem;
}

.post-hero img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

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

.post-image {
    margin: 3rem 0;
}

.post-image img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.image-caption {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.post-quote {
    margin: 4rem 0;
    padding: 2rem 3rem;
    background-color: var(--background-off);
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius-md);
}

.post-quote blockquote {
    margin: 0;
}

.post-quote p {
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.post-quote cite {
    display: block;
    font-size: 1.4rem;
    color: var(--text-medium);
    text-align: right;
}

.post-conclusion {
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--background-off);
    border-radius: var(--border-radius-lg);
}

.post-tags {
    margin: 4rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tag-label {
    font-weight: 500;
    margin-right: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin: 0.5rem;
    background-color: var(--background-off);
    border-radius: var(--border-radius-sm);
    color: var(--text-medium);
    font-size: 1.4rem;
    transition: all var(--transition-fast);
}

.tag:hover {
    background-color: var(--primary-light);
    color: white;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.post-share {
    margin-top: 4rem;
}

.post-share h3 {
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-button {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    color: white;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.share-button svg {
    margin-right: 0.8rem;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.linkedin {
    background-color: #0077b5;
}

.share-button.email {
    background-color: #555555;
}

.share-button:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: var(--shadow-md);
}

.related-posts {
    padding: 6rem 0;
    background-color: var(--background-off);
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 4rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-light);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 2rem 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.cookie-more-info {
    font-size: 1.4rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    html {
        font-size: 60%;
    }
    
    .trends-content, 
    .mission-content, 
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .trends-image, 
    .mission-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    header {
        height: auto;
        padding: 1.5rem 0;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-light);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal), padding var(--transition-normal);
        box-shadow: var(--shadow-md);
    }
    
    nav.active {
        max-height: 300px;
        padding: 2rem 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 0 var(--container-padding);
    }
    
    nav li {
        margin: 0 0 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 3.6rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: var(--border-radius-md);
    }
    
    .newsletter-form input {
        margin-bottom: 1rem;
    }
    
    .filter-options {
        flex-direction: column;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 55%;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .post-header {
        padding: 0 1.5rem;
    }
    
    .post-content {
        padding: 0 1.5rem;
    }
    
    .post-image {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        border-radius: 0;
    }
    
    .post-image img {
        border-radius: 0;
    }
    
    .post-quote {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        border-radius: 0;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-button {
        width: 100%;
        justify-content: center;
    }
}
