/*
Theme Name: JPMendes - Material Theme
Description: Template Angular Material para JPMendes Tecnologia
Version: 1.0
Author: JPMendes Tecnologia
*/

/* Import Google Fonts - Roboto (Material Design font) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* Variables - JPMendes Brand Colors */
:root {
    --primary-color: #2E7FB8;
    --primary-dark: #1E5A8A;
    --primary-light: #4A9BD1;
    --accent-color: #FF6B35;
    --text-primary: #424242;
    --text-secondary: #757575;
    --background: #FAFAFA;
    --surface: #FFFFFF;
    --error: #F44336;
    --success: #4CAF50;
    --shadow-1: 0 2px 4px rgba(0,0,0,0.12);
    --shadow-2: 0 4px 8px rgba(0,0,0,0.16);
    --shadow-3: 0 8px 16px rgba(0,0,0,0.20);
}

* {
    box-sizing: border-box;
}

html, body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--background);
    color: var(--text-primary);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Material Design Elevation */
.elevation-1 { box-shadow: var(--shadow-1); }
.elevation-2 { box-shadow: var(--shadow-2); }
.elevation-3 { box-shadow: var(--shadow-3); }

/* Header - Material App Bar */
header {
    background: var(--surface);
    color: var(--text-primary);
    box-shadow: var(--shadow-2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo,
.custom-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: transform 0.2s ease;
}

.logo:hover,
.custom-logo:hover {
    transform: scale(1.05);
}

.logo-link {
    display: block;
    line-height: 0;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
}

.site-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 300;
}

/* Navigation - Material Tabs */
nav {
    display: flex;
    align-items: center;
}

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

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    display: block;
}

nav ul li a:hover {
    background-color: rgba(46, 127, 184, 0.08);
    color: var(--primary-color);
}

nav ul li.current-menu-item a,
nav ul li a.current {
    color: var(--primary-color);
    background-color: rgba(46, 127, 184, 0.12);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
}

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

/* Main Content */
main {
    background: var(--background);
    min-height: auto;
    padding: 32px 0;
}

/* Material Cards */
.card {
    background: var(--surface);
    border-radius: 8px;
    box-shadow: var(--shadow-1);
    margin-bottom: 24px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-2);
}

.card-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

.card-content {
    padding: 24px;
}

.card-actions {
    padding: 8px 16px;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

/* Posts */
.post {
    background: var(--surface);
    border-radius: 12px;
    box-shadow: var(--shadow-1);
    margin-bottom: 32px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.post:hover {
    box-shadow: var(--shadow-3);
    transform: translateY(-4px);
}

.post-header {
    padding: 24px 24px 16px;
    position: relative;
}

.post-title {
    margin: 0 0 12px 0;
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-meta {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-meta .material-icons {
    font-size: 16px;
    opacity: 0.8;
}

.post-content {
    padding: 16px 24px 24px;
    color: var(--text-primary);
    line-height: 1.6;
}

.post-excerpt {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-thumbnail-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.post-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post:hover .post-thumbnail {
    transform: scale(1.05);
}

.post-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.post-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-tags {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.post-tag {
    background: rgba(46, 127, 184, 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

.post-footer {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 8px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-read-time {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Single Post Styling */
.single-post {
    background: var(--surface);
    border-radius: 12px;
    box-shadow: var(--shadow-1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.single-post-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.post-category-single a {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.single-post-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.single-post-meta {
    color: rgba(255,255,255,0.9) !important;
}

.single-post-meta .material-icons {
    color: rgba(255,255,255,0.8);
}

.single-post-thumbnail {
    margin: -1rem 2rem 3rem !important;
    position: relative;
    z-index: 1;
}

.single-post-content {
    padding: 0 2rem 2rem;
}

.single-post-tags {
    padding: 0 2rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 2rem;
}

/* Post Navigation Styling */
.post-navigation {
    background: var(--surface);
    border-radius: 12px;
    box-shadow: var(--shadow-1);
    margin: 2rem 0;
    padding: 2rem;
}

.post-navigation .btn {
    min-height: 60px;
    padding: 1rem 1.5rem;
    justify-content: flex-start;
    text-align: left;
}

.post-navigation .btn small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

.nav-home .btn {
    background: var(--primary-color);
    color: white;
    min-height: auto;
    padding: 12px 24px;
}

.nav-home .btn:hover {
    background: var(--primary-dark);
}

/* Related Posts Section */
.related-posts {
    background: var(--surface);
    border-radius: 12px;
    box-shadow: var(--shadow-1);
    padding: 3rem 2rem;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.75rem;
    color: var(--text-primary);
}

.related-posts .blog-grid {
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.related-posts .post {
    margin-bottom: 0;
    transform: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-posts .post:hover {
    transform: translateY(-4px);
}

/* Blog Grid Improvements */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-bottom: 3rem;
}

.blog-section {
    padding: 80px 0;
}

.blog-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Blog Navigation */
.blog-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Blog Pagination */
.blog-pagination {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 2rem;
}

.pagination-info {
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(46, 127, 184, 0.1);
    border-radius: 6px;
    color: var(--primary-color) !important;
}

/* Newsletter Section */
.newsletter-section input {
    font-family: 'Roboto', sans-serif;
}

.newsletter-section input:focus {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}

/* Blog Page Specific */
.blog-page .post-footer .btn {
    font-weight: 500;
}

.no-posts .card {
    box-shadow: var(--shadow-2);
}

/* Pagination Styles */
.pagination-wrapper {
    margin-top: 2rem;
}

.pagination-item {
    display: inline-block;
}

.pagination-link,
.current {
    display: flex !important;
    align-items: center;
    gap: 4px;
    min-width: 44px;
    justify-content: center;
}

.current {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
    cursor: default;
}

.pagination-link:hover {
    transform: none;
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .post-thumbnail-wrapper {
        height: 200px;
    }
    
    .post-header {
        padding: 20px 20px 12px;
    }
    
    .post-content {
        padding: 12px 20px 20px;
    }
    
    .post-footer {
        padding: 0 20px 20px;
        padding-top: 16px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .post-meta {
        gap: 12px;
    }
    
    .blog-section-title {
        font-size: 2rem;
    }
}

/* Buttons - Material Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 36px;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-2);
}

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

.btn-outlined:hover {
    background-color: rgba(46, 127, 184, 0.08);
}

.btn-text {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 16px;
}

.btn-text:hover {
    background-color: rgba(46, 127, 184, 0.08);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 48px 0 0;
    margin-top: 64px;
    border-radius: 40px 40px 0 0;
    position: relative;
}

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

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 1.6;
}

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

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-top: 32px;
}

/* Responsive Design */
/* Comments Styling */
.comments-section {
    margin-top: 4rem;
}

.comments-section .card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
}

.comments-section .card-content {
    padding: 0;
}

.comment-respond {
    background: var(--surface);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-1);
}

.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-reply-title:before {
    content: "chat";
    font-family: "Material Icons";
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logged-in-as {
    background: rgba(46, 127, 184, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.logged-in-as a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

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

.comment-form-comment label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.comment-form-comment textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 2px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--surface);
    resize: vertical;
    transition: all 0.2s ease;
}

.comment-form-comment textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 127, 184, 0.1);
}

.comment-form-comment textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-submit {
    margin-top: 1rem;
}

.submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-1);
}

.submit:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-2);
    transform: translateY(-1px);
}

.submit:active {
    transform: translateY(0);
}

.submit:before {
    content: "send";
    font-family: "Material Icons";
    font-size: 18px;
}

/* Comment List Styling */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    background: var(--surface) !important;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-1);
    border-left: 4px solid var(--primary-color);
}

.comment-list .comment .comment {
    background: rgba(46, 127, 184, 0.05) !important;
    margin-left: 2rem;
    margin-top: 1rem;
    border-left: 3px solid rgba(46, 127, 184, 0.3);
}

.comment-list li {
    background: transparent !important;
}

.comment-list li article {
    background: var(--surface) !important;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-1);
    border-left: 4px solid var(--primary-color);
}

/* Override WordPress default comment styles - Force override all possible selectors */
.commentlist,
.commentlist li,
.commentlist li.comment,
.commentlist li.bypostauthor,
.comment-list,
.comment-list li,
.comment-list li.comment,
.comment-list li.bypostauthor,
ol.commentlist,
ol.commentlist li,
ul.commentlist,
ul.commentlist li,
ol.comment-list,
ol.comment-list li,
ul.comment-list,
ul.comment-list li,
#comments ol,
#comments ol li,
#comments ul,
#comments ul li {
    background: var(--surface) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
    box-shadow: var(--shadow-1) !important;
    border-left: 4px solid var(--primary-color) !important;
    list-style: none !important;
}

/* Nested comments */
.comment-list .children li,
.comment-list .children .comment {
    background: rgba(46, 127, 184, 0.05) !important;
    margin-left: 2rem !important;
    margin-top: 1rem !important;
    border-left: 3px solid rgba(46, 127, 184, 0.3) !important;
}

/* Comment author styling */
.comment-author .fn {
    color: var(--text-primary) !important;
    font-weight: 500 !important;
}

.comment-author .says {
    display: none;
}

/* Custom Comments Template Styling */
.comments-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comments-title:before {
    content: "chat_bubble_outline";
    font-family: "Material Icons";
    font-size: 1.5rem;
    color: var(--primary-color);
}

.comment-list-wrapper {
    margin-bottom: 2rem;
}

.custom-comment {
    background: var(--surface) !important;
    border-radius: 12px !important;
    box-shadow: var(--shadow-1) !important;
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
    border-left: 4px solid var(--primary-color) !important;
    border: none !important;
}

.custom-comment .comment-body {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.comment-author-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.comment-avatar {
    border-radius: 50%;
    box-shadow: var(--shadow-1);
}

.comment-metadata {
    flex: 1;
}

.comment-author-name {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.comment-author-name a {
    color: var(--text-primary);
    text-decoration: none;
}

.comment-author-name a:hover {
    color: var(--primary-color);
}

.comment-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.comment-date a {
    color: var(--text-secondary);
    text-decoration: none;
}

.comment-date a:hover {
    color: var(--primary-color);
}

.comment-content {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.comment-content p {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.comment-awaiting-moderation {
    color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    display: block;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.comment-reply {
    text-align: right;
}

.comment-reply a {
    background: rgba(46, 127, 184, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.comment-reply a:hover {
    background: var(--primary-color);
    color: white;
}


.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.comment-author {
    font-weight: 500;
    color: var(--text-primary);
}

.comment-metadata a {
    color: var(--text-secondary);
    text-decoration: none;
}

.comment-metadata a:hover {
    color: var(--primary-color);
}

.comment-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.reply {
    margin-top: 1rem;
}

.comment-reply-link {
    background: rgba(46, 127, 184, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.comment-reply-link:hover {
    background: var(--primary-color);
    color: white;
}


/* No Comments Message */
.no-comments {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    background: rgba(0,0,0,0.02);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.no-comments .material-icons {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
}

@media (max-width: 768px) {
    .comment-respond {
        padding: 1.5rem;
    }
    
    .comment-list .comment {
        padding: 1rem;
    }
    
    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        box-shadow: var(--shadow-2);
        flex-direction: column;
        gap: 0;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li a {
        padding: 16px 24px;
        border-radius: 0;
        border-bottom: 1px solid rgba(0,0,0,0.12);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .post-content,
    .card-content {
        padding: 16px;
    }
    
    .post-header,
    .card-header {
        padding: 16px 16px 8px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}