/**
 * Main Theme Styles
 *
 * @package My_Premium_Theme
 */

/* ==========================================================================
   Content Area
   ========================================================================== */
.mpt-content-area {
    padding: var(--mpt-spacing-3xl) 0;
}

.mpt-content-wrapper {
    display: grid;
    gap: var(--mpt-spacing-xl);
}

.mpt-content-wrapper.mpt-has-sidebar {
    grid-template-columns: 1fr 300px;
}

.mpt-content-wrapper.mpt-has-sidebar.mpt-sidebar-left {
    grid-template-columns: 300px 1fr;
}

.mpt-content-wrapper.mpt-has-sidebar.mpt-sidebar-left .mpt-sidebar {
    order: -1;
}

/* ==========================================================================
   Posts Grid
   ========================================================================== */
.mpt-posts-grid {
    display: grid;
    gap: var(--mpt-spacing-xl);
}

.mpt-posts-grid.mpt-posts-grid {
    grid-template-columns: repeat(var(--blog-columns, 3), 1fr);
}

.mpt-posts-grid.mpt-posts-list {
    grid-template-columns: 1fr;
}

/* Post Card */
.mpt-post-card {
    background: var(--mpt-white);
    border-radius: var(--mpt-radius-xl);
    overflow: hidden;
    box-shadow: var(--mpt-shadow-md);
    transition: transform var(--mpt-transition-normal), box-shadow var(--mpt-transition-normal);
}

.mpt-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--mpt-shadow-xl);
}

.mpt-post-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.mpt-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--mpt-transition-slow);
}

.mpt-post-card:hover .mpt-post-thumbnail img {
    transform: scale(1.05);
}

.mpt-post-content {
    padding: var(--mpt-spacing-lg);
}

.mpt-post-meta {
    margin-bottom: var(--mpt-spacing-sm);
}

.mpt-post-category a {
    font-size: var(--mpt-text-sm);
    font-weight: var(--mpt-font-semibold);
    color: var(--mpt-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mpt-post-title {
    font-size: var(--mpt-text-xl);
    margin-bottom: var(--mpt-spacing-sm);
    line-height: var(--mpt-leading-snug);
}

.mpt-post-title a {
    color: var(--mpt-secondary);
    transition: color var(--mpt-transition-fast);
}

.mpt-post-title a:hover {
    color: var(--mpt-primary);
}

.mpt-post-excerpt {
    color: var(--mpt-gray-600);
    margin-bottom: var(--mpt-spacing-md);
    line-height: var(--mpt-leading-relaxed);
}

.mpt-post-footer {
    display: flex;
    align-items: center;
    gap: var(--mpt-spacing-md);
    font-size: var(--mpt-text-sm);
    color: var(--mpt-gray-500);
}

.mpt-post-author {
    display: flex;
    align-items: center;
    gap: var(--mpt-spacing-xs);
}

.mpt-post-author img {
    border-radius: var(--mpt-radius-full);
}

/* ==========================================================================
   Single Post
   ========================================================================== */
.mpt-single-post {
    padding: var(--mpt-spacing-3xl) 0;
}

.mpt-entry-header {
    text-align: center;
    margin-bottom: var(--mpt-spacing-2xl);
}

.mpt-entry-meta {
    margin-bottom: var(--mpt-spacing-md);
}

.mpt-entry-category a {
    font-size: var(--mpt-text-sm);
    font-weight: var(--mpt-font-semibold);
    color: var(--mpt-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mpt-entry-title {
    font-size: var(--mpt-text-5xl);
    margin-bottom: var(--mpt-spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mpt-entry-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--mpt-spacing-lg);
    color: var(--mpt-gray-500);
}

.mpt-entry-author {
    display: flex;
    align-items: center;
    gap: var(--mpt-spacing-sm);
}

.mpt-entry-author img {
    border-radius: var(--mpt-radius-full);
}

.mpt-entry-thumbnail {
    margin-bottom: var(--mpt-spacing-2xl);
    border-radius: var(--mpt-radius-2xl);
    overflow: hidden;
}

.mpt-entry-thumbnail img {
    width: 100%;
    height: auto;
}

.mpt-entry-content {
    font-size: var(--mpt-text-lg);
    line-height: var(--mpt-leading-relaxed);
    max-width: 750px;
    margin: 0 auto var(--mpt-spacing-2xl);
}

.mpt-entry-content p {
    margin-bottom: var(--mpt-spacing-lg);
}

.mpt-entry-content h2,
.mpt-entry-content h3,
.mpt-entry-content h4 {
    margin-top: var(--mpt-spacing-2xl);
    margin-bottom: var(--mpt-spacing-md);
}

.mpt-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--mpt-radius-lg);
}

.mpt-entry-content blockquote {
    margin: var(--mpt-spacing-xl) 0;
    padding: var(--mpt-spacing-lg) var(--mpt-spacing-xl);
    border-left: 4px solid var(--mpt-primary);
    background: var(--mpt-gray-50);
    border-radius: 0 var(--mpt-radius-lg) var(--mpt-radius-lg) 0;
    font-style: italic;
}

.mpt-entry-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--mpt-spacing-md);
    padding: var(--mpt-spacing-lg) 0;
    border-top: 1px solid var(--mpt-gray-200);
    border-bottom: 1px solid var(--mpt-gray-200);
    max-width: 750px;
    margin: 0 auto var(--mpt-spacing-2xl);
}

.mpt-entry-tags a {
    display: inline-block;
    padding: var(--mpt-spacing-xs) var(--mpt-spacing-sm);
    background: var(--mpt-gray-100);
    color: var(--mpt-gray-700);
    border-radius: var(--mpt-radius-md);
    font-size: var(--mpt-text-sm);
    margin-right: var(--mpt-spacing-xs);
    transition: all var(--mpt-transition-fast);
}

.mpt-entry-tags a:hover {
    background: var(--mpt-primary);
    color: var(--mpt-white);
}

.mpt-share-links {
    display: flex;
    align-items: center;
    gap: var(--mpt-spacing-sm);
}

.mpt-share-label {
    font-weight: var(--mpt-font-medium);
    color: var(--mpt-gray-600);
}

.mpt-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--mpt-gray-100);
    color: var(--mpt-gray-600);
    border-radius: var(--mpt-radius-full);
    transition: all var(--mpt-transition-fast);
}

.mpt-share-link:hover {
    background: var(--mpt-primary);
    color: var(--mpt-white);
}

/* ==========================================================================
   Author Bio
   ========================================================================== */
.mpt-author-bio {
    display: flex;
    gap: var(--mpt-spacing-lg);
    padding: var(--mpt-spacing-xl);
    background: var(--mpt-gray-50);
    border-radius: var(--mpt-radius-xl);
    max-width: 750px;
    margin: 0 auto var(--mpt-spacing-2xl);
}

.mpt-author-avatar img {
    border-radius: var(--mpt-radius-full);
}

.mpt-author-name {
    font-size: var(--mpt-text-lg);
    margin-bottom: var(--mpt-spacing-xs);
}

.mpt-author-name a {
    color: var(--mpt-secondary);
}

.mpt-author-description {
    color: var(--mpt-gray-600);
    line-height: var(--mpt-leading-relaxed);
}

/* ==========================================================================
   Page
   ========================================================================== */
.mpt-page-content {
    padding: var(--mpt-spacing-2xl) 0;
}

.mpt-page-header {
    text-align: center;
    margin-bottom: var(--mpt-spacing-2xl);
}

.mpt-page-title {
    font-size: var(--mpt-text-5xl);
}

.mpt-page-content-inner {
    max-width: 900px;
    margin: 0 auto;
    font-size: var(--mpt-text-lg);
    line-height: var(--mpt-leading-relaxed);
}

/* ==========================================================================
   Archive
   ========================================================================== */
.mpt-archive {
    padding: var(--mpt-spacing-3xl) 0;
}

.mpt-archive-header {
    text-align: center;
    margin-bottom: var(--mpt-spacing-2xl);
}

.mpt-archive-title {
    font-size: var(--mpt-text-4xl);
}

.mpt-archive-description {
    max-width: 600px;
    margin: var(--mpt-spacing-md) auto 0;
    color: var(--mpt-gray-600);
}

/* ==========================================================================
   Search Results
   ========================================================================== */
.mpt-search-results {
    padding: var(--mpt-spacing-3xl) 0;
}

.mpt-search-header {
    text-align: center;
    margin-bottom: var(--mpt-spacing-2xl);
}

.mpt-search-title {
    font-size: var(--mpt-text-4xl);
}

.mpt-search-title span {
    color: var(--mpt-primary);
}

.mpt-search-result {
    background: var(--mpt-white);
    border-radius: var(--mpt-radius-xl);
    padding: var(--mpt-spacing-lg);
    box-shadow: var(--mpt-shadow-sm);
    transition: box-shadow var(--mpt-transition-fast);
}

.mpt-search-result:hover {
    box-shadow: var(--mpt-shadow-md);
}

.mpt-search-result-inner {
    display: flex;
    gap: var(--mpt-spacing-lg);
}

.mpt-search-thumbnail {
    flex-shrink: 0;
    width: 200px;
}

.mpt-search-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: var(--mpt-radius-lg);
}

.mpt-search-type {
    display: inline-block;
    font-size: var(--mpt-text-xs);
    font-weight: var(--mpt-font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mpt-primary);
    margin-bottom: var(--mpt-spacing-xs);
}

.mpt-search-title {
    font-size: var(--mpt-text-xl);
    margin-bottom: var(--mpt-spacing-sm);
}

.mpt-search-title a {
    color: var(--mpt-secondary);
}

.mpt-search-title a:hover {
    color: var(--mpt-primary);
}

.mpt-search-excerpt {
    color: var(--mpt-gray-600);
}

/* ==========================================================================
   404 Page
   ========================================================================== */
.mpt-error-404 {
    padding: var(--mpt-spacing-4xl) 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mpt-error-code {
    font-size: 10rem;
    font-weight: var(--mpt-font-extrabold);
    line-height: 1;
    background: linear-gradient(135deg, var(--mpt-primary), var(--mpt-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mpt-error-title {
    font-size: var(--mpt-text-4xl);
    margin-bottom: var(--mpt-spacing-md);
}

.mpt-error-message {
    max-width: 500px;
    margin: 0 auto var(--mpt-spacing-xl);
    color: var(--mpt-gray-600);
}

.mpt-error-actions {
    margin-bottom: var(--mpt-spacing-xl);
}

.mpt-error-search {
    max-width: 400px;
    margin: 0 auto;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */
.mpt-sidebar {
    padding: var(--mpt-spacing-lg);
    background: var(--mpt-gray-50);
    border-radius: var(--mpt-radius-xl);
    height: fit-content;
}

.mpt-widget {
    margin-bottom: var(--mpt-spacing-xl);
}

.mpt-widget:last-child {
    margin-bottom: 0;
}

.mpt-widget-title {
    font-size: var(--mpt-text-lg);
    margin-bottom: var(--mpt-spacing-md);
    padding-bottom: var(--mpt-spacing-sm);
    border-bottom: 2px solid var(--mpt-primary);
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.mpt-breadcrumb {
    padding: var(--mpt-spacing-md) 0;
    background: var(--mpt-gray-50);
    font-size: var(--mpt-text-sm);
}

.mpt-breadcrumb a {
    color: var(--mpt-gray-600);
}

.mpt-breadcrumb a:hover {
    color: var(--mpt-primary);
}

.mpt-breadcrumb-sep {
    margin: 0 var(--mpt-spacing-sm);
    color: var(--mpt-gray-400);
}

.mpt-breadcrumb-current {
    color: var(--mpt-gray-800);
    font-weight: var(--mpt-font-medium);
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.mpt-pagination {
    margin-top: var(--mpt-spacing-2xl);
}

.mpt-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--mpt-spacing-sm);
}

.mpt-pagination a,
.mpt-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--mpt-spacing-md);
    background: var(--mpt-white);
    border: 1px solid var(--mpt-gray-200);
    border-radius: var(--mpt-radius-lg);
    color: var(--mpt-gray-700);
    font-weight: var(--mpt-font-medium);
    transition: all var(--mpt-transition-fast);
}

.mpt-pagination a:hover {
    background: var(--mpt-primary);
    border-color: var(--mpt-primary);
    color: var(--mpt-white);
}

.mpt-pagination .current {
    background: var(--mpt-primary);
    border-color: var(--mpt-primary);
    color: var(--mpt-white);
}

/* ==========================================================================
   Comments
   ========================================================================== */
.mpt-comments-area {
    max-width: 750px;
    margin: 0 auto;
    padding: var(--mpt-spacing-2xl) 0;
}

.mpt-comments-title {
    font-size: var(--mpt-text-2xl);
    margin-bottom: var(--mpt-spacing-xl);
}

.mpt-comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mpt-comment {
    margin-bottom: var(--mpt-spacing-xl);
}

.mpt-comment-body {
    display: flex;
    gap: var(--mpt-spacing-md);
}

.mpt-comment-avatar img {
    border-radius: var(--mpt-radius-full);
}

.mpt-comment-content {
    flex: 1;
    background: var(--mpt-gray-50);
    padding: var(--mpt-spacing-md);
    border-radius: var(--mpt-radius-lg);
}

.mpt-comment-header {
    display: flex;
    align-items: center;
    gap: var(--mpt-spacing-sm);
    margin-bottom: var(--mpt-spacing-sm);
}

.mpt-comment-author {
    font-weight: var(--mpt-font-semibold);
}

.mpt-comment-date {
    font-size: var(--mpt-text-sm);
    color: var(--mpt-gray-500);
}

.mpt-comment-reply-title {
    font-size: var(--mpt-text-2xl);
    margin-bottom: var(--mpt-spacing-lg);
}

.mpt-comment-form .comment-form-comment textarea {
    width: 100%;
    min-height: 150px;
}

/* ==========================================================================
   Boxed Layout Template
   ========================================================================== */
.mpt-boxed-layout {
    background: #f9fafb;
    padding: var(--mpt-spacing-3xl) 0;
}

.mpt-boxed-content {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--mpt-white, #ffffff);
    padding: var(--mpt-spacing-3xl);
    border-radius: var(--mpt-radius-2xl, 16px);
    box-shadow: var(--mpt-shadow-lg, 0 10px 25px rgba(0, 0, 0, 0.1));
}

/* ==========================================================================
   Reading Progress Indicator
   ========================================================================== */
.mpt-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
    pointer-events: none;
}

.mpt-reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--mpt-primary, #3b82f6), var(--mpt-accent, #8b5cf6));
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.mpt-scroll-to-top {
    position: fixed;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--mpt-primary, #3b82f6);
    color: var(--mpt-white, #ffffff);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mpt-scroll-to-top:hover {
    background: var(--mpt-accent, #8b5cf6);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.mpt-scroll-to-top:active {
    transform: translateY(-2px);
}

.mpt-scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mpt-scroll-to-top-right {
    right: 30px;
}

.mpt-scroll-to-top-left {
    left: 30px;
}

.mpt-scroll-to-top svg {
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
}

@media (max-width: 768px) {
    .mpt-scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
    }
    
    .mpt-scroll-to-top-right {
        right: 20px;
    }
    
    .mpt-scroll-to-top-left {
        left: 20px;
    }
}

/* ==========================================================================
   Notifications
   ========================================================================== */
.mpt-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    background: #ffffff;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 400px;
    font-size: 14px;
    font-weight: 500;
}

.mpt-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.mpt-notification-success {
    border-left-color: #22c55e;
    background: #f0fdf4;
    color: #166534;
}

.mpt-notification-error {
    border-left-color: #ef4444;
    background: #fef2f2;
    color: #991b1b;
}

.mpt-notification-info {
    border-left-color: #3b82f6;
    background: #eff6ff;
    color: #1e40af;
}

.mpt-notification-warning {
    border-left-color: #f59e0b;
    background: #fffbeb;
    color: #92400e;
}

/* ==========================================================================
   Language Switcher
   ========================================================================== */
.mpt-language-switcher {
    position: relative;
    display: inline-block;
}

.mpt-language-switcher-current {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
}

.mpt-language-switcher-current:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.mpt-language-switcher-current::after {
    content: '▼';
    margin-left: 6px;
    font-size: 10px;
    opacity: 0.6;
}

.mpt-language-switcher:hover .mpt-language-switcher-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mpt-language-switcher-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.mpt-language-switcher-dropdown li {
    margin: 0;
}

.mpt-language-switcher-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
}

.mpt-language-switcher-dropdown li a:hover {
    background: #f9fafb;
}

.mpt-language-switcher-dropdown li.active a {
    background: #eff6ff;
    color: #1e40af;
    font-weight: 500;
}

.mpt-language-switcher-dropdown li a img {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

/* ==========================================================================
   Custom Widgets
   ========================================================================== */

/* Recent Posts Widget */
.mtc-recent-posts-widget {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mtc-recent-post-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.mtc-recent-post-item:last-child {
    border-bottom: none;
}

.mtc-recent-post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.mtc-recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mtc-recent-post-content {
    flex: 1;
}

.mtc-recent-post-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.mtc-recent-post-title a {
    color: #1e293b;
    text-decoration: none;
}

.mtc-recent-post-title a:hover {
    color: #3b82f6;
}

.mtc-recent-post-meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.mtc-recent-post-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Social Icons Widget */
.mtc-social-icons-widget {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mtc-social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size, 40px);
    height: var(--icon-size, 40px);
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--icon-color, #3b82f6);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mtc-social-icon-link:hover {
    background: var(--icon-color, #3b82f6);
    color: #ffffff;
    transform: translateY(-2px);
}

.mtc-social-icon-link .dashicons {
    font-size: var(--icon-size, 20px);
    width: var(--icon-size, 20px);
    height: var(--icon-size, 20px);
}

/* Newsletter Widget */
.mtc-newsletter-form {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.mtc-newsletter-input {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
}

.mtc-newsletter-button {
    padding: 12px 24px;
    background: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.mtc-newsletter-button:hover {
    background: #2563eb;
}

.mtc-newsletter-description {
    margin-bottom: 16px;
    color: #64748b;
    font-size: 14px;
}

.mtc-newsletter-message {
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 12px;
}

.mtc-newsletter-message .success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.mtc-newsletter-message .error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ==========================================================================
   Centered Template
   ========================================================================== */
.mpt-container-centered {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.mpt-content-wrapper {
    max-width: 100%;
}

/* ==========================================================================
   No Header/Footer Template
   ========================================================================== */
.site-no-header-footer {
    margin: 0;
    padding: 0;
}

.site-no-header-footer .site-content {
    margin: 0;
    padding: 0;
}

.site-no-header-footer .site-main {
    margin: 0;
    padding: 0;
}

.site-no-header-footer .entry-content {
    margin: 0;
    padding: 0;
}

