/*
Theme Name: digital-era v1.1
Theme URI: https://pressmegpt.com
Author: PressMeGPT
Author URI: https://pressmegpt.com
Description: # Design Style Create a premium AI & technology-inspired WordPress theme based on the official Digital-Era.nl logo identity. The provided Digital-Era.nl logo must be the foundation of the complete visual design system. Do NOT redesign, replace, or modify the logo. Use the logo as the inspiration for: - Complete website color system - UI components - Header - Footer - Gutenberg blocks - Buttons - Cards - Animations - Background elements - WordPress admin branding - Theme screenshot - Favicon styling The theme should feel like a premium European technology brand. Reference style: - Stripe - Linear - Vercel - Microsoft Fluent Design - Modern SaaS platforms while keeping a unique Digital-Era.nl identity. --- # Brand Visual Identity The Digital-Era.nl logo represents: - Digital innovation - Connected technology - Growth - Future solutions - AI transformation - Digital building blocks The overlapping square shapes from the logo should be subtly reused throughout the design language. Use: - Rounded square elements - Layered UI components - Floating cards - Geometric backgrounds - Modern grid layouts - Connected visual elements Do not overuse the shapes. Keep everything premium and minimal. --- # Color Palette Extract and use the logo colors as the primary theme colors. Primary Blue #2DAAE1 Represents: - Technology - Trust - Innovation - Digital connection Primary Orange #F5A623 Represents: - Energy - Growth - Creativity - Action Dark Background #0F172A Surface #1E293B Surface Light #334155 White Text #F8FAFC Secondary Text #CBD5E1 Border rgba(255,255,255,0.08) Gradient Blue #2DAAE1 → #1E88E5 Gradient Orange #F5A623 → #FF8F00 Success #22C55E Warning #F59E0B Danger #EF4444 --- # Interface Style Create: - Dark futuristic interface - Glassmorphism effects - Premium SaaS appearance - Soft gradients - Rounded cards - Modern typography - Professional animations - Excellent spacing - Responsive grid layouts - High accessibility - WCAG compliant - Lightning-fast performance --- # Typography Use Google Fonts: Headings: Space Grotesk Body: Inter Requirements: - Modern technology feeling - Excellent readability - Responsive typography - Dark mode optimized --- # Logo Integration The Digital-Era.nl logo must appear in: - Website header - Mobile menu - Footer - Login screen - WordPress admin branding - Theme screenshot.png - Favicon - Loading animation Requirements: - Never stretch the logo - Keep original proportions - Support SVG, PNG and WebP formats - Provide light and dark logo versions --- # Header Design Create a premium sticky header. Features: - Original Digital-Era.nl logo on the left - Glass background - Rounded navigation container - Modern mega menu - AI search button - Blue active states - Orange hover effects - Smooth animations --- # Hero Design Create a futuristic homepage hero. Include: - Large headline - AI technology visuals - Floating square elements inspired by logo - Blue and orange glow effects - Glass content panels - Premium CTA buttons Background: - Abstract Digital-Era geometric pattern - Animated layered squares - Subtle futuristic motion --- # Buttons Primary Button: - Blue gradient background - Orange hover animation - Rounded corners - Soft glow - Premium SaaS style Secondary Button: - Transparent glass style - Blue border - Orange hover highlight --- # Cards All cards must follow the Digital-Era brand identity. Examples: - AI Tool cards - Product cards - Blog cards - Comparison cards - Review cards Style: - Rounded corners - Glass effect - Dark surface - Blue accent borders - Orange hover glow - Smooth lift animation - Modern icon containers --- # Gutenberg Blocks Branding All custom blocks must use the same design system: - Hero block - AI Tool Grid - Product Grid - Review Cards - Comparison Tables - Feature Cards - Testimonials - FAQ - Newsletter - Pricing Table - CTA Sections - Statistics - Affiliate Product Cards Every block should automatically inherit: - Digital-Era colors - Logo-inspired shapes - Typography - Animations - Spacing system --- # Footer Design Create a premium technology footer. Include: - Digital-Era logo - Newsletter signup - Social links - Navigation - AI Tools - Digital Products - Affiliate Partners Design: - Dark background - Blue/orange gradient divider - Subtle square pattern inspired by logo - Glass footer widgets --- # Theme Screenshot Create screenshot.png for WordPress installation. It must show: - Official Digital-Era.nl logo - Premium homepage preview - AI tool cards - Digital product cards - Blue/orange branding - Modern dark interface --- # Theme Options Branding Add options for: Brand Logo Light Logo Dark Logo Favicon Primary Color Secondary Color Accent Color Button Styles Gradient Settings Header Style Footer Style Animation Settings Dark Mode Settings Custom CSS --- # Final Design Requirement The finished WordPress theme must look like a premium AI technology platform built specifically for Digital-Era.nl. Every visual element must match the official logo identity. The result should feel: - Professional - Futuristic - Trustworthy - Premium - Conversion-focused - Enterprise-ready The Digital-Era.nl logo, blue/orange color system, and geometric square design language must be visible throughout the complete WordPress theme. | This theme was generated by PressMeGPT.com - AI WordPress Theme Generator. Free software released under GNU GPLv2 with attribution.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: digital-era
Tags: custom, pressmegpt, ai-generated, custom-logo, custom-menu, custom-colors, dark, custom-fonts

This theme was created with PressMeGPT.com - AI WordPress Theme Generator.
Free to use, modify, and distribute under GNU GPLv2 with attribution.
*/

/* Reset and base styles */
*, *::before, *::after {
box-sizing: border-box;
}

body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
}

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

a {
text-decoration: none;
}

/* ===== Header Styles ===== */
.site-header {
padding: 1rem 2rem;
}

.header-inner {
max-width: 1400px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}

/* Header Layout: Logo Left, Menu Right (default) */
.header-layout-logo-left-menu-right .header-inner {
flex-direction: row;
justify-content: space-between;
}

/* Header Layout: Logo Right, Menu Left */
.header-layout-logo-right-menu-left .header-inner {
flex-direction: row-reverse;
justify-content: space-between;
}

/* Header Layout: Logo Center, Menu Below */
.header-layout-logo-center-menu-below .header-inner {
flex-direction: column;
text-align: center;
}

.header-layout-logo-center-menu-below .site-branding {
margin-bottom: 1rem;
}

/* Header Layout: Logo Center, Menu Split */
.header-layout-logo-center-menu-split .header-inner {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
}

.header-layout-logo-center-menu-split .menu-left {
justify-self: end;
}

.header-layout-logo-center-menu-split .menu-right {
justify-self: start;
}

/* Site Branding */
.site-branding {
display: flex;
align-items: center;
gap: 1rem;
}

.site-branding a {
display: inline-block;
}

.custom-logo {
display: block;
height: auto;
}

.site-title {
margin: 0;
font-size: 1.5rem;
font-weight: 700;
}

.site-title a {
color: inherit;
}

.site-description {
margin: 0.25rem 0 0;
font-size: 0.875rem;
opacity: 0.8;
}

/* Primary Navigation */
.main-navigation {
display: flex;
align-items: center;
}

.main-navigation ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 1.5rem;
}

.main-navigation li {
position: relative;
}

.main-navigation a {
display: block;
padding: 0.5rem 0;
font-weight: 500;
transition: color 0.2s ease;
}

.main-navigation a:hover {
opacity: 0.7;
}

/* Dropdown menus */
.main-navigation ul ul {
position: absolute;
top: 100%;
left: 0;
min-width: 200px;
flex-direction: column;
gap: 0;
background: #fff;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
border-radius: 4px;
padding: 0.5rem 0;
opacity: 0;
visibility: hidden;
transition: opacity 0.2s, visibility 0.2s;
}

.main-navigation li:hover > ul {
opacity: 1;
visibility: visible;
}

.main-navigation ul ul a {
padding: 0.5rem 1rem;
color: #333;
}

/* Mobile Menu Toggle */
.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}

.menu-toggle svg {
width: 24px;
height: 24px;
}

@media (max-width: 768px) {
.menu-toggle {
    display: block;
}

.main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: inherit;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.main-navigation.toggled {
    display: block;
}

.main-navigation ul {
    flex-direction: column;
    gap: 0.5rem;
}

.main-navigation ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding-left: 1rem;
}
}

/* ===== Footer Styles ===== */
.site-footer {
padding: 2rem;
}

.footer-inner {
max-width: 1400px;
margin: 0 auto;
}

/* Footer Layout: Centered */
.footer-layout-centered .footer-inner {
text-align: center;
}

.footer-layout-centered .footer-navigation ul {
justify-content: center;
}

/* Footer Layout: Left Aligned */
.footer-layout-left-aligned .footer-inner {
text-align: left;
}

/* Footer Layout: Split */
.footer-layout-split .footer-inner {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

/* Footer Navigation */
.footer-navigation {
margin-bottom: 1rem;
}

.footer-navigation ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 1.5rem;
flex-wrap: wrap;
}

.footer-navigation a {
font-size: 0.875rem;
transition: opacity 0.2s;
}

.footer-navigation a:hover {
opacity: 0.7;
}

/* Footer Menu Position */
.footer-menu-below .footer-navigation {
order: 2;
margin-bottom: 0;
margin-top: 1rem;
}

.footer-menu-below .site-info {
order: 1;
}

/* Footer Widgets */
.footer-widgets {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-widgets .widget {
margin-bottom: 0;
}

.footer-widgets .widget-title {
font-size: 1rem;
font-weight: 600;
margin-bottom: 1rem;
}

/* Site Info */
.site-info {
font-size: 0.875rem;
opacity: 0.8;
}

.site-info p {
margin: 0;
}

@media (max-width: 768px) {
.footer-layout-split .footer-inner {
    flex-direction: column;
    text-align: center;
}

.footer-navigation ul {
    justify-content: center;
}
}

/* ===== Widget Styles ===== */
.widget {
margin-bottom: 2rem;
}

.widget-title {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 1rem;
}

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

.widget li {
padding: 0.25rem 0;
}

/* ===== Content Styles ===== */
.content-area {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}

.content-area.has-sidebar {
display: grid;
grid-template-columns: 1fr 300px;
gap: 3rem;
align-items: start;
}

@media (max-width: 768px) {
.content-area.has-sidebar {
    grid-template-columns: 1fr;
    gap: 2rem;
}
}

/* PressMeGPT: full-bleed entry header for blog posts (rendered outside .content-area) */
.single .entry-header,
.page .entry-header.full-bleed {
width: 100%;
margin: 0;
}

.primary-content {
min-width: 0;
}

.page-content-wrapper {
max-width: 1200px;
margin: 0 auto;
}

/* PressMeGPT inner pages render full-bleed (sections handle their own width) */
.pressmegpt-page-content,
.pressmegpt-page-content.entry-content {
width: 100%;
max-width: none;
margin: 0;
padding: 0;
line-height: inherit;
}

.page-header {
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 2px solid #2DAAE1;
}

.page-title {
font-size: 2rem;
margin: 0 0 0.5rem;
color: #F8FAFC;
}

.archive-description {
font-size: 1rem;
opacity: 0.7;
}

.entry-header {
margin-bottom: 1.5rem;
}

.entry-title {
font-size: 2rem;
margin: 0 0 0.5rem;
}

.entry-title a {
color: #F8FAFC;
text-decoration: none;
transition: color 0.2s;
}

.entry-title a:hover {
color: #2DAAE1;
}

.entry-meta {
font-size: 0.875rem;
opacity: 0.7;
margin-bottom: 0.5rem;
}

.entry-content {
margin-bottom: 2rem;
line-height: 1.8;
}

.entry-footer {
font-size: 0.875rem;
padding: 1rem 0;
border-top: 1px solid rgba(0,0,0,0.1);
margin-bottom: 1.5rem;
}

.entry-footer .cat-links,
.entry-footer .tags-links {
display: block;
margin-bottom: 0.25rem;
}

.entry-footer a {
color: #2DAAE1;
}

.post-thumbnail {
margin-bottom: 1.5rem;
}

.post-thumbnail img {
border-radius: 8px;
width: 100%;
}

/* Post navigation */
.post-navigation,
.posts-navigation {
padding: 1.5rem 0;
border-top: 1px solid rgba(0,0,0,0.1);
margin-top: 1rem;
}

.post-navigation a,
.posts-navigation a,
.nav-links a {
color: #2DAAE1;
text-decoration: none;
font-weight: 500;
}

.post-navigation a:hover,
.posts-navigation a:hover,
.nav-links a:hover {
text-decoration: underline;
}

.nav-subtitle {
display: block;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.05em;
opacity: 0.6;
margin-bottom: 0.25rem;
}

/* ===== Search ===== */
.search-form {
display: flex;
max-width: 500px;
}

.search-form .search-field {
flex: 1;
padding: 10px 16px;
border: 2px solid rgba(0,0,0,0.15);
border-right: none;
border-radius: 6px 0 0 6px;
font-size: 1rem;
outline: none;
}

.search-form .search-field:focus {
border-color: #2DAAE1;
}

.search-form .search-submit {
padding: 10px 20px;
background: #2DAAE1;
color: #fff;
border: 2px solid #2DAAE1;
border-radius: 0 6px 6px 0;
cursor: pointer;
font-weight: 600;
font-size: 1rem;
}

.search-result {
padding-bottom: 1.5rem;
margin-bottom: 1.5rem;
border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ===== Comments ===== */
.comments-area {
margin-top: 2rem;
padding-top: 2rem;
border-top: 2px solid rgba(0,0,0,0.08);
}

.comments-title {
font-size: 1.5rem;
margin-bottom: 1.5rem;
}

.comment-list {
list-style: none;
padding: 0;
margin: 0;
}

.comment-list li {
padding: 1rem 0;
border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comment-list .comment-author img {
border-radius: 50%;
margin-right: 0.75rem;
vertical-align: middle;
}

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

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
width: 100%;
padding: 10px 14px;
border: 2px solid rgba(0,0,0,0.12);
border-radius: 6px;
font-size: 1rem;
margin-bottom: 1rem;
}

.comment-form textarea {
min-height: 120px;
resize: vertical;
}

.comment-form .submit-button,
.comment-form input[type="submit"] {
background: #2DAAE1;
color: #fff;
border: none;
padding: 12px 24px;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
font-size: 1rem;
}

/* ===== Sidebar ===== */
.widget-area {
padding: 1.5rem;
background: rgba(0,0,0,0.03);
border-radius: 8px;
}

.widget-area .widget {
margin-bottom: 2rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid rgba(0,0,0,0.08);
}

.widget-area .widget:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}

.widget-area .widget-title {
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: #F8FAFC;
}

.widget-area ul {
list-style: none;
padding: 0;
margin: 0;
}

.widget-area li {
padding: 0.35rem 0;
}

.widget-area a {
color: #2DAAE1;
text-decoration: none;
}

.widget-area a:hover {
text-decoration: underline;
}

/* ===== Utility Classes ===== */
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}

.skip-link:focus {
background-color: #f1f1f1;
clip: auto !important;
clip-path: none;
color: #21759b;
display: block;
font-size: 0.875rem;
font-weight: 700;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
}

/* Theme Designer Custom Styles */
:root {
 --td-color-primary: #2DAAE1;
 --td-color-secondary: #F5A623;
 --td-color-background: #0F172A;
 --td-color-surface: #1E293B;
 --td-color-surface-light: #334155;
 --td-color-text: #F8FAFC;
 --td-color-text-secondary: #CBD5E1;
 --td-color-heading: #F8FAFC;
 --td-color-link: #2DAAE1;
 --td-color-link-hover: #1E88E5;
 --td-color-btn-primary-bg: linear-gradient(to right, #2DAAE1, #1E88E5);
 --td-color-btn-primary-text: #ffffff;
 --td-color-btn-primary-hover: linear-gradient(to right, #2DAAE1, #1E88E5);
 --td-color-btn-secondary-bg: rgba(255, 255, 255, 0.08);
 --td-color-btn-secondary-text: #2DAAE1;
 --td-color-btn-secondary-hover: rgba(255, 255, 255, 0.15);
 --td-color-header-bg: rgba(15, 23, 42, 0.8);
 --td-color-header-text: #F8FAFC;
 --td-color-footer-bg: #0F172A;
 --td-color-footer-text: #CBD5E1;
 --td-font-body: 'Inter', sans-serif;
 --td-font-heading: 'Space Grotesk', sans-serif;
 --td-font-size-base: 16px;
 --td-heading-scale: 1.25;
 --td-border-color: rgba(255, 255, 255, 0.08);
}
* {
 min-width: 0;
 box-sizing: border-box;
}
html {
 scroll-behavior: smooth;
}
body {
 font-family: var(--td-font-body);
 color: var(--td-color-text);
 background-color: var(--td-color-background);
 line-height: 1.7;
 margin: 0;
 padding: 0;
 overflow-x: hidden;
}
.fse-group, .fse-section {
 overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
 font-family: var(--td-font-heading);
 color: var(--td-color-heading);
 line-height: 1.15;
 letter-spacing: -0.03em;
 margin-top: 0;
}
.fse-heading {
 line-height: 1.2;
 letter-spacing: -0.03em;
}
.fse-paragraph {
 font-size: 1.125rem;
 line-height: 1.7;
 color: var(--td-color-text-secondary);
}
a {
 color: var(--td-color-link);
 text-decoration: none;
 transition: color 0.3s ease;
}
a:hover {
 color: var(--td-color-link-hover);
}
img {
 max-width: 100%;
 height: auto;
 display: block;
}
.fse-section {
 padding: 100px 0;
 position: relative;
 z-index: 1;
}
.fse-group {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
 position: relative;
}
.fse-section-title {
 font-size: clamp(2rem, 4vw, 3.5rem);
 text-align: center;
 margin-bottom: 20px;
 color: var(--td-color-heading);
}
.fse-section-description {
 font-size: 1.25rem;
 text-align: center;
 max-width: 800px;
 margin: 0 auto 60px;
 color: var(--td-color-text-secondary);
}
.fse-button {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 14px 28px;
 border-radius: 12px;
 font-weight: 600;
 font-size: 1.1rem;
 text-decoration: none;
 white-space: nowrap;
 transition: transform 0.3s ease, filter 0.3s ease, background 0.3s ease, border-color 0.3s ease;
 border: 1px solid transparent;
 position: relative;
 overflow: hidden;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.fse-button:hover {
 filter: brightness(1.1);
 transform: translateY(-2px);
 text-decoration: none;
}
.fse-button-primary {
 background: var(--td-color-btn-primary-bg);
 color: var(--td-color-btn-primary-text);
}
.fse-button-primary::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0; bottom: 0;
 background: linear-gradient(to right, #FF8F00, #F5A623);
 opacity: 0;
 transition: opacity 0.3s ease;
 z-index: 0;
}
.fse-button-primary:hover::before {
 opacity: 1; 
}
.fse-button-primary span, .fse-button-primary i {
 position: relative;
 z-index: 1;
}
.fse-button-secondary {
 background: var(--td-color-btn-secondary-bg);
 color: var(--td-color-btn-secondary-text);
 border-color: var(--td-color-link);
 backdrop-filter: blur(8px);
}
.fse-button-secondary:hover {
 background: var(--td-color-btn-secondary-hover);
 border-color: var(--td-color-secondary);
 color: var(--td-color-secondary);
}
.fse-button-link {
 background: none;
 border: none;
 color: var(--td-color-link);
 padding: 0;
 font-weight: 500;
 font-size: 1rem;
 box-shadow: none;
 transition: color 0.3s ease, transform 0.3s ease;
}
.fse-button-link:hover {
 color: var(--td-color-link-hover);
 transform: translateX(4px);
 filter: none;
}
.fse-button-link i {
 margin-left: 8px;
 font-size: 0.9em;
}
.fse-button-icon-only {
 width: 48px;
 height: 48px;
 padding: 0;
 border-radius: 50%;
 font-size: 1.2rem;
 box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.fse-icon {
 font-size: 3rem;
 color: var(--td-color-primary);
 margin-bottom: 20px;
 max-width: 64px;
 max-height: 64px;
 width: auto;
 height: auto;
 object-fit: contain;
}
.gradient-text {
 background: linear-gradient(90deg, var(--td-color-primary), var(--td-color-secondary));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 color: transparent;
}
.fse-header {
 padding: 15px 0;
 background: var(--td-color-header-bg);
 position: sticky;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 backdrop-filter: blur(12px);
 border-bottom: 1px solid var(--td-border-color);
}
.fse-header-content {
 display: flex;
 justify-content: space-between;
 align-items: center;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}
.fse-header-left {
 display: flex;
 align-items: center;
 gap: 10px;
 flex: 0 1 auto;
 padding-left: 16px;
}
.fse-header-right {
 display: flex;
 align-items: center;
 gap: 15px;
 flex: 0 0 auto;
 margin-left: auto;
 padding-right: 16px;
}
.fse-logo-area {
 display: flex;
 align-items: center;
 gap: 10px;
}
.fse-logo {
 height: 70px;
 width: auto;
 min-height: 60px;
}
.fse-site-title {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--td-color-heading);
}
.fse-main-nav {
 display: flex;
}
.fse-nav-menu {
 display: flex;
 gap: 30px;
 list-style: none;
 margin: 0;
 padding: 0;
 justify-content: center;
 align-items: center;
}
.fse-nav-menu a {
 text-decoration: none;
 color: var(--td-color-header-text);
 font-weight: 500;
 white-space: nowrap;
 position: relative;
 padding: 5px 0;
}
.fse-nav-menu a::after {
 content: '';
 position: absolute;
 left: 0;
 bottom: 0;
 width: 0;
 height: 2px;
 background-color: var(--td-color-primary);
 transition: width 0.3s ease;
}
.fse-nav-menu a:hover::after, .fse-nav-menu a.active::after {
 width: 100%;
}
.fse-toggle-button {
 display: none;
 background: none;
 border: none;
 font-size: 24px;
 cursor: pointer;
 color: var(--td-color-header-text);
}
.fse-header-actions {
 display: flex;
 gap: 15px;
}
.fse-main-nav.mobile-open {
 display: flex !important;
 position: absolute;
 top: 100%;
 left: 0;
 right: 0;
 background: var(--td-color-header-bg, #fff);
 flex-direction: column;
 padding: 20px;
 box-shadow: 0 4px 6px rgba(0,0,0,0.1);
 z-index: 100;
}
.fse-main-nav.mobile-open .fse-nav-menu {
 flex-direction: column;
 gap: 15px;
 align-items: flex-start;
}
@media (max-width: 768px) {
 .fse-toggle-button {
 display: block;
 order: 3;
 margin-left: auto;
 }
 .fse-main-nav {
 display: none;
 }
 .fse-header-actions {
 display: none;
 }
 .fse-header-content {
 flex-wrap: wrap;
 }
}
.fse-hero {
 display: flex;
 align-items: center;
 justify-content: center;
 min-height: 90vh;
 padding: 80px 20px;
 text-align: center;
 background-color: var(--td-color-background);
 background-image: radial-gradient(at 20% 70%, rgba(45,170,225, 0.15) 0px, transparent 50%),
 radial-gradient(at 80% 30%, rgba(245,166,35, 0.15) 0px, transparent 50%),
 url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
 background-size: cover;
 position: relative;
 overflow: hidden;
}
.fse-hero-content {
 position: relative;
 z-index: 2;
 max-width: 900px;
 margin: 0 auto;
}
.fse-hero-panel {
 background: rgba(30, 41, 59, 0.6);
 backdrop-filter: blur(20px);
 border: 1px solid var(--td-border-color);
 border-radius: 20px;
 padding: 40px 60px;
 box-shadow: 0 20px 60px rgba(0,0,0,0.3);
 position: relative;
 z-index: 5;
}
.fse-hero-headline {
 font-size: clamp(2.8rem, 5.5vw, 5rem);
 line-height: 1.1;
 margin-bottom: 25px;
 letter-spacing: -0.04em;
 font-weight: 700;
}
.fse-hero-subheadline {
 font-size: clamp(1.1rem, 1.8vw, 1.4rem);
 max-width: 700px;
 margin: 0 auto 40px;
 color: var(--td-color-text-secondary);
 line-height: 1.6;
}
.fse-hero-buttons {
 display: flex;
 justify-content: center;
 gap: 20px;
 flex-wrap: wrap;
 margin-top: 30px;
}
.hero-geometric-accent {
 position: absolute;
 width: 100px;
 height: 100px;
 background: rgba(45, 170, 225, 0.1);
 border: 1px solid rgba(45, 170, 225, 0.3);
 border-radius: 20px;
 box-shadow: 0 0 30px rgba(45, 170, 225, 0.4);
 transform: rotate(45deg);
 z-index: 1;
}
.hero-geometric-accent-1 {
 top: 15%;
 left: 10%;
 width: 120px;
 height: 120px;
 background: rgba(245, 166, 35, 0.1);
 border-color: rgba(245, 166, 35, 0.3);
 box-shadow: 0 0 40px rgba(245, 166, 35, 0.5);
}
.hero-geometric-accent-2 {
 bottom: 10%;
 right: 15%;
 width: 90px;
 height: 90px;
 background: rgba(45, 170, 225, 0.15);
 border-color: rgba(45, 170, 225, 0.4);
 box-shadow: 0 0 50px rgba(45, 170, 225, 0.6);
}
.fse-section-dark-surface {
 background-color: var(--td-color-surface);
 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}
.fse-services-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}
.fse-service-card {
 background: rgba(30, 41, 59, 0.6);
 backdrop-filter: blur(10px);
 border: 1px solid var(--td-border-color);
 border-radius: 16px;
 padding: 30px;
 text-align: center;
 box-shadow: 0 8px 30px rgba(0,0,0,0.2);
 transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
 position: relative;
 overflow: hidden;
}
.fse-service-card::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0; bottom: 0;
 border-radius: 16px;
 padding: 1px;
 background: linear-gradient(45deg, var(--td-color-primary) 0%, var(--td-color-secondary) 100%);
 -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
 mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
 -webkit-mask-composite: xor;
 mask-composite: exclude;
 opacity: 0;
 transition: opacity 0.3s ease;
 z-index: 0;
}
.fse-service-card:hover::before {
 opacity: 1;
}
.fse-service-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 15px 45px rgba(0,0,0,0.3);
 border-color: transparent; 
}
.fse-service-card .fse-heading {
 font-size: 1.5rem;
 margin-bottom: 15px;
 position: relative;
 z-index: 1;
}
.fse-service-card .fse-paragraph {
 font-size: 1rem;
 color: var(--td-color-text-secondary);
 margin-bottom: 20px;
 position: relative;
 z-index: 1;
}
.fse-service-card .fse-icon {
 position: relative;
 z-index: 1;
}
.fse-about-columns {
 align-items: center;
 padding: 0 20px;
 flex-direction: row; 
}
.fse-about-image-column {
 flex: 1;
 min-width: 45%;
}
.fse-about-content-column {
 flex: 1;
 min-width: 50%;
}
.fse-image-container {
 width: 100%;
 aspect-ratio: 4/3;
 overflow: hidden;
 border-radius: 16px;
 box-shadow: 0 10px 40px rgba(0,0,0,0.2);
 border: 1px solid var(--td-border-color);
}
.fse-image-container img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.fse-about-content-column .fse-section-title {
 text-align: left;
}
.fse-about-content-column .fse-paragraph {
 text-align: left;
 margin-bottom: 20px;
 font-size: 1.1rem;
}
.fse-about-content-column .fse-button {
 margin-top: 20px;
}
.fse-testimonials-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 30px;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}
.fse-testimonial-card {
 background: rgba(30, 41, 59, 0.6);
 backdrop-filter: blur(10px);
 border: 1px solid var(--td-border-color);
 border-radius: 16px;
 padding: 30px;
 text-align: center;
 box-shadow: 0 8px 30px rgba(0,0,0,0.2);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fse-testimonial-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 15px 45px rgba(0,0,0,0.3);
}
.fse-avatar {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 border: 2px solid var(--td-color-primary);
}
.fse-testimonial-card .fse-paragraph {
 font-style: italic;
 margin-bottom: 20px;
 color: var(--td-color-text);
}
.fse-testimonial-author .fse-heading {
 font-size: 1.2rem;
 margin-bottom: 5px;
 color: var(--td-color-primary);
}
.fse-testimonial-author .fse-paragraph {
 font-size: 0.9rem;
 color: var(--td-color-text-secondary);
 margin: 0;
}
.fse-cta {
 background: linear-gradient(135deg, var(--td-color-primary) 0%, var(--td-color-link-hover) 100%);
 text-align: center;
 padding: 100px 20px;
 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
}
.fse-cta .fse-section-title, .fse-cta .fse-section-description {
 color: #fff;
}
.fse-cta .fse-section-description {
 margin-bottom: 40px;
}
.fse-cta-buttons {
 display: flex;
 justify-content: center;
 gap: 20px;
 flex-wrap: wrap;
}
.fse-cta .fse-button-primary {
 background: #0F172A; 
 color: #fff;
 border-color: #0F172A;
}
.fse-cta .fse-button-primary:hover {
 background: #1E293B;
 filter: brightness(1.1);
}
.fse-cta .fse-button-secondary {
 background: rgba(255, 255, 255, 0.15);
 color: #fff;
 border-color: rgba(255, 255, 255, 0.3);
 backdrop-filter: blur(8px);
}
.fse-cta .fse-button-secondary:hover {
 background: rgba(255, 255, 255, 0.25);
 border-color: #fff;
}
.fse-footer {
 background: var(--td-color-footer-bg);
 padding: 60px 0 20px;
 color: var(--td-color-footer-text);
 border-top: 1px solid var(--td-border-color);
}
.fse-footer-content {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}
.fse-footer-columns {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 40px;
 margin-bottom: 40px;
}
.fse-footer-columns .fse-column {
 text-align: left;
}
.fse-footer-columns .fse-column h4 {
 margin-bottom: 15px;
 font-size: 1.1rem;
 color: var(--td-color-heading);
 text-align: left;
}
.fse-footer-logo {
 height: 40px;
 width: auto;
 margin-bottom: 15px;
}
.fse-footer-menu {
 list-style: none;
 padding: 0;
 margin: 0;
 text-align: left;
}
.fse-footer-menu li {
 margin-bottom: 10px;
}
.fse-footer-menu a {
 color: var(--td-color-footer-text);
 text-decoration: none;
 transition: color 0.3s ease;
}
.fse-footer-menu a:hover {
 color: var(--td-color-primary);
}
.fse-contact-list {
 list-style: none;
 padding: 0;
 margin: 0;
 text-align: left;
}
.fse-contact-list li {
 margin-bottom: 12px;
 display: flex;
 align-items: flex-start;
 gap: 10px;
 justify-content: flex-start;
 color: var(--td-color-footer-text);
}
.fse-contact-list i {
 width: 20px;
 color: var(--td-color-primary);
 flex-shrink: 0;
 margin-top: 2px;
}
.fse-footer-bottom {
 border-top: 1px solid var(--td-border-color);
 padding-top: 20px;
 text-align: center;
}
.fse-copyright {
 font-size: 14px;
 text-align: center;
 color: var(--td-color-footer-text);
}
.fse-columns {
 display: flex;
 flex-wrap: wrap;
 gap: 30px;
}
.fse-column {
 flex: 1 1 300px;
 min-width: 0;
}
@media (max-width: 992px) {
 .fse-services-grid, .fse-testimonials-grid {
 grid-template-columns: repeat(2, 1fr);
 }
 .fse-about-columns {
 flex-direction: column;
 }
 .fse-about-image-column, .fse-about-content-column {
 min-width: 100%;
 }
 .fse-about-content-column .fse-section-title, .fse-about-content-column .fse-paragraph {
 text-align: center;
 }
 .fse-about-content-column .fse-button {
 margin: 20px auto 0;
 display: table;
 }
}
@media (max-width: 768px) {
 .fse-section {
 padding: 80px 0;
 }
 .fse-hero-headline {
 font-size: clamp(2rem, 8vw, 3.5rem);
 }
 .fse-hero-subheadline {
 font-size: 1rem;
 }
 .fse-hero-panel {
 padding: 30px;
 }
 .fse-hero-buttons {
 flex-direction: column;
 align-items: center;
 }
 .fse-hero-buttons .fse-button {
 width: 100%;
 max-width: 280px;
 }
 .fse-services-grid, .fse-testimonials-grid {
 grid-template-columns: 1fr;
 }
 .fse-footer-columns {
 grid-template-columns: 1fr;
 gap: 30px;
 }
 .fse-footer-columns .fse-column {
 text-align: center;
 }
 .fse-footer-columns .fse-column h4 {
 text-align: center;
 }
 .fse-footer-menu {
 text-align: center;
 }
 .fse-contact-list li {
 justify-content: center;
 }
 .fse-columns {
 flex-direction: column;
 }
 .fse-column {
 flex: 1 1 100%;
 width: 100%;
 }
}
@media (max-width: 576px) {
 .fse-section-title {
 font-size: clamp(1.8rem, 7vw, 2.5rem);
 }
 .fse-section-description {
 font-size: 1rem;
 }
 .fse-hero-panel {
 padding: 25px 20px;
 }
}
.animate-on-scroll, .animate-slide-left, .animate-slide-right, .animate-scale {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-slide-left {
 transform: translateX(-40px);
}
.animate-slide-right {
 transform: translateX(40px);
}
.animate-scale {
 transform: scale(0.9);
}
.is-visible {
 opacity: 1;
 transform: translateY(0);
}
.animate-slide-left.is-visible {
 transform: translateX(0);
}
.animate-slide-right.is-visible {
 transform: translateX(0);
}
.animate-scale.is-visible {
 transform: scale(1);
}
@keyframes fadeSlideUp {
 from { opacity: 0; transform: translateY(30px); }
 to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
 from { opacity: 0; transform: translateX(-30px); }
 to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
 from { opacity: 0; transform: translateX(30px); }
 to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
 from { opacity: 0; transform: scale(0.95); }
 to { opacity: 1; transform: scale(1); }
}
.animate-on-scroll { opacity: 0; }
.animate-slide-left { opacity: 0; }
.animate-slide-right { opacity: 0; }
.animate-scale { opacity: 0; }
.animate-on-scroll.visible { animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-left.visible { animation: fadeSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-right.visible { animation: fadeSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-scale.visible { animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.fse-button { transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.2s ease; }
.fse-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); filter: brightness(1.1); text-decoration: none !important; }
.fse-button:hover * { text-decoration: none !important; color: inherit !important; }



/* PressMeGPT FAQ accordion (native details/summary + JS fallback) */
.fse-faq-details,
details.fse-faq-item,
details[class*="faq"] {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.fse-faq-details summary,
details.fse-faq-item summary,
details[class*="faq"] summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
}
.fse-faq-details summary::-webkit-details-marker,
details.fse-faq-item summary::-webkit-details-marker {
  display: none;
}
.fse-faq-answer,
.fse-faq-details > div,
details.fse-faq-item > div {
  padding-bottom: 1rem;
}
.fse-faq-item.is-open > .fse-faq-answer,
.fse-accordion-item.is-open > .fse-accordion-body {
  display: block;
}
.fse-faq-item:not(.is-open) > .fse-faq-answer,
.fse-accordion-item:not(.is-open) > .fse-accordion-body {
  display: none;
}



/* Copy-site Gutenberg fidelity — never style header/footer nav as content lists */
footer.fse-designed-footer:not(.fse-copy-preserve) {
  color: #ffffff !important;
}
main .wp-block-html .fse-section-dark :where(h1,h2,h3,h4,h5,h6,p,li,span,a:not(.fse-button)),
main .wp-block-html .fse-hero-dark :where(h1,h2,h3,h4,h5,h6,p,li,span,a:not(.fse-button)),
main .wp-block-html .fse-deals-section :where(h1,h2,h3,h4,h5,h6,p,li,span,a:not(.fse-button)),
footer.fse-designed-footer:not(.fse-copy-preserve) :where(h1,h2,h3,h4,h5,h6,p,li,a:not(.fse-button)) {
  color: inherit !important;
}

header.fse-designed-header:not(.fse-copy-preserve) ul,
header.fse-designed-header:not(.fse-copy-preserve) ol,
.fse-designed-header:not(.fse-copy-preserve) .wp-block-html ul,
.fse-designed-header:not(.fse-copy-preserve) .wp-block-html ol,
.fse-designed-header:not(.fse-copy-preserve) ul,
.fse-designed-header:not(.fse-copy-preserve) ol,
.fse-designed-header:not(.fse-copy-preserve) nav ul,
.fse-designed-header:not(.fse-copy-preserve) .fse-main-nav ul,
.fse-designed-header:not(.fse-copy-preserve) .fse-nav-menu {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.fse-designed-header:not(.fse-copy-preserve) li::marker { content: none !important; }
.fse-designed-header:not(.fse-copy-preserve) .fse-header-content,
.fse-designed-header:not(.fse-copy-preserve) .fse-header-inner,
.fse-designed-header:not(.fse-copy-preserve) .fse-header-row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.fse-designed-header:not(.fse-copy-preserve) .fse-header-actions {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

footer.fse-designed-footer:not(.fse-copy-preserve) ul,
footer.fse-designed-footer:not(.fse-copy-preserve) ol,
.fse-designed-footer:not(.fse-copy-preserve) .wp-block-html ul,
.fse-designed-footer:not(.fse-copy-preserve) .wp-block-html ol,
.fse-designed-footer:not(.fse-copy-preserve) ul,
.fse-designed-footer:not(.fse-copy-preserve) ol,
.fse-designed-footer:not(.fse-copy-preserve) nav ul,
.fse-designed-footer:not(.fse-copy-preserve) .fse-nav-menu,
.fse-designed-footer:not(.fse-copy-preserve) .fse-footer-columns ul {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
.fse-designed-footer:not(.fse-copy-preserve) li::marker { content: none !important; }
/* Preserve footer column grid/flex from masterCss — do not force flex layout here */

/* Preserve per-section colors from masterCss — avoid theme.json global text on dark sections */
main .wp-block-html .fse-section,
main .wp-block-html .fse-hero,
main .wp-block-html .fse-cta,
main .wp-block-html section[class*="fse-"] {
  color: unset;
}
main .wp-block-html .fse-section-dark,
main .wp-block-html .fse-hero-dark,
main .wp-block-html .fse-section[class*="dark"],
main .wp-block-html .fse-hero[class*="dark"],
main .wp-block-html .fse-deals-section,
footer.fse-designed-footer:not(.fse-copy-preserve) {
  color: #ffffff !important;
}
main .wp-block-html .fse-section-dark :where(h1,h2,h3,h4,h5,h6,p,li,span,a:not(.fse-button)),
main .wp-block-html .fse-hero-dark :where(h1,h2,h3,h4,h5,h6,p,li,span,a:not(.fse-button)),
main .wp-block-html .fse-deals-section :where(h1,h2,h3,h4,h5,h6,p,li,span,a:not(.fse-button)),
footer.fse-designed-footer:not(.fse-copy-preserve) :where(h1,h2,h3,h4,h5,h6,p,li,a:not(.fse-button)) {
  color: inherit !important;
}

main.wp-block-group ul:not(.fse-nav-menu):not(.fse-main-nav ul),
main .wp-block-html ul:not(.fse-nav-menu),
.fse-section ul:not(.fse-nav-menu) {
  list-style: disc;
  padding-left: 1.5em;
  margin-left: 0;
}
main.wp-block-group ol:not(.fse-nav-menu),
main .wp-block-html ol:not(.fse-nav-menu),
.fse-section ol:not(.fse-nav-menu) {
  list-style: decimal;
  padding-left: 1.5em;
}
main .wp-block-list:not(.fse-nav-menu) {
  list-style: revert;
  padding-left: 1.5em;
}
main .wp-block-list li,
.fse-section li:not(.fse-nav-menu li) {
  margin-bottom: 0.35em;
}

.fse-section i[class*="fa-"],
.fse-section .fa,
.fse-section .fas,
.fse-section .far,
.fse-section .fab,
main i[class*="fa-"],
.fse-card [class*="icon"],
.fse-service-card [class*="icon"] {
  font-size: 1.25em;
  line-height: 1;
  vertical-align: middle;
}
.fse-section svg,
.fse-card svg {
  width: auto;
  height: 1.25em;
  max-width: 2em;
}

.wp-block-html i[class*="fa-"],
.wp-block-html .fa,
.wp-block-html .fas,
.wp-block-html .far,
.wp-block-html .fab {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 1.25em;
  line-height: 1;
}

.fse-section:not(.fse-copy-preserve) img,
.fse-card img,
main:not(.fse-copy-preserve) .wp-block-html img {
  max-width: 100%;
  height: auto;
  display: block;
}
main:not(.fse-copy-preserve) .wp-block-html .fse-column img,
main:not(.fse-copy-preserve) .wp-block-html .fse-grid img,
main:not(.fse-copy-preserve) .wp-block-html .fse-card img,
main:not(.fse-copy-preserve) .wp-block-html .fse-two-column img,
main:not(.fse-copy-preserve) .wp-block-html .fse-services img,
main:not(.fse-copy-preserve) .wp-block-html .fse-feature img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
main:not(.fse-copy-preserve) .wp-block-html .fse-hero-image,
main:not(.fse-copy-preserve) .wp-block-html .fse-hero-graphic,
main:not(.fse-copy-preserve) .wp-block-html .fse-hero-image img,
main:not(.fse-copy-preserve) .wp-block-html .fse-hero-graphic img,
main:not(.fse-copy-preserve) .wp-block-html .fse-hero img.fse-hero-image {
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  object-fit: contain;
}

.fse-section i[class*="fa-"],
main .wp-block-html .fse-section p,
main .wp-block-html .fse-card p {
  font-size: 1rem;
  line-height: 1.65;
}
main .wp-block-html .fse-card h3,
main .wp-block-html .fse-column h3 {
  font-size: 1.125rem;
  line-height: 1.35;
}

.fse-section[style*="background-image"],
.fse-hero[style*="background-image"],
[class*="fse-"][style*="background-image"],
.wp-block-html [style*="background-image"] {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

iframe,
.wp-block-html iframe {
  max-width: 100%;
  width: 100%;
  border: 0;
  display: block;
}

.wp-block-cover .fse-hero-content,
.wp-block-cover .fse-section-header,
.wp-block-html .fse-hero-content {
  text-align: inherit;
}
.wp-block-cover__inner-container .fse-hero-content {
  max-width: none;
  width: 100%;
}

.fse-section,
.fse-hero,
.wp-block-html .fse-section,
.wp-block-html .fse-hero {
  position: relative;
}

/* Classic theme designer wrappers (mockup / figma / copy-site exports) */
.theme-designer-header ul,
.theme-designer-header ol,
.theme-designer-footer ul,
.theme-designer-footer ol,
.theme-designer-footer .fse-footer-columns ul,
.theme-designer-footer .menu {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
.theme-designer-header li::marker,
.theme-designer-footer li::marker {
  content: none !important;
}
/* Fallback footer columns for plain theme-designer footers only.
   Do NOT force flex on .fse-copy-preserve / mockup / figma designed footers —
   their master CSS owns grid/flex layout (EXP-12). */
.theme-designer-footer:not(:has(.fse-copy-preserve)) .fse-footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Let source-site CSS control image sizing inside copy-preserve shells */
.fse-copy-preserve img,
header.fse-copy-preserve img,
footer.fse-copy-preserve img,
main.fse-copy-preserve .wp-block-html img {
  max-width: 100%;
}


/* Copy-site image fidelity — content photos full width; icons only capped.
 * IMPORTANT: exclude header/footer chrome (logos, payment badges, social icons)
 * so their authored sizes are respected instead of being blown up to intrinsic. */
.fse-section:not(.fse-header):not(.fse-footer) img:not(.fse-icon):not([class*="icon"]):not(.fse-logo):not(.fse-footer-logo),
.fse-hero img:not(.fse-icon):not([class*="icon"]):not(.fse-logo),
.fse-gallery img,
.fse-portfolio img,
.fse-project img,
.fse-service img,
.fse-feature img,
.fse-card img:not(.fse-icon):not([class*="icon"]):not(.fse-template-thumb img),
.fse-column img:not(.fse-icon):not([class*="icon"]),
.wp-block-html img:not(.fse-icon):not([class*="icon"]) {
  max-width: 100% !important;
  max-height: none !important;
  width: auto !important;
  height: auto !important;
  object-fit: cover;
}
.fse-hero-image img,
.fse-hero-graphic img,
.fse-card .fse-template-thumb img,
.fse-deal-card img,
.fse-product-card img,
.fse-template-card img,
.fse-product-grid .fse-card > img:first-child,
.fse-featured-grid .fse-card > img:first-child {
  max-width: 100% !important;
  max-height: none !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
}
.fse-card img.fse-icon,
.fse-column img.fse-icon,
img.fse-category-icon,
.fse-card img[class*="icon"]:not([class*="thumb"]),
.fse-column img[width="64"],
.fse-column img[height="64"] {
  max-width: 64px;
  max-height: 64px;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}
/* Header/footer chrome caps — safety net so logos and payment/social badges
 * never render at intrinsic size. Specificity is deliberately >= the broad
 * .fse-section img:not(...):not(...) rule above so these caps actually win. */
.fse-section.fse-header img.fse-logo,
header.fse-section img.fse-logo,
header.fse-header img.fse-logo {
  max-height: 64px !important;
  max-width: 260px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}
.fse-section.fse-footer img.fse-footer-logo,
.fse-section.fse-footer img.fse-logo,
footer.fse-section img.fse-footer-logo,
footer.fse-section img.fse-logo,
footer.fse-footer img.fse-footer-logo {
  max-height: 56px !important;
  max-width: 220px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}
/* Footer inline images (payment badges, social icons, app-store buttons) */
.fse-section.fse-footer img:not(.fse-logo):not(.fse-footer-logo),
footer.fse-section img:not(.fse-logo):not(.fse-footer-logo),
footer.fse-footer img:not(.fse-logo):not(.fse-footer-logo) {
  max-height: 40px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}
/* Header inline images beside logo (badges, small icons) */
.fse-section.fse-header img:not(.fse-logo),
header.fse-section img:not(.fse-logo),
header.fse-header img:not(.fse-logo) {
  max-height: 48px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}
.fse-hero-content,
.fse-hero-overlay,
.fse-section .fse-hero-content,
[class*="overlay"] .fse-hero-content {
  position: relative;
  z-index: 2;
}
.fse-hero[style*="background-image"],
.fse-section[style*="background-image"] {
  background-size: cover !important;
  background-position: center !important;
}



/* ===== Per-Page Scoped Styles (PressMeGPT) ===== */


/* ===== PressMeGPT: Blog/Archive Layout Enforcement (must win over master CSS) ===== */
body.single .content-area,
body.blog .content-area,
body.archive .content-area,
body.search .content-area,
body.error404 .content-area {
max-width: 1200px !important;
margin-left: auto !important;
margin-right: auto !important;
padding-left: 2rem !important;
padding-right: 2rem !important;
box-sizing: border-box;
}

@media (max-width: 768px) {
body.single .content-area,
body.blog .content-area,
body.archive .content-area,
body.search .content-area,
body.error404 .content-area {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
}

body.single .content-area.has-sidebar,
body.blog .content-area.has-sidebar,
body.archive .content-area.has-sidebar,
body.search .content-area.has-sidebar {
display: grid !important;
grid-template-columns: minmax(0, 1fr) 300px !important;
gap: 3rem !important;
align-items: start;
}

@media (max-width: 900px) {
body.single .content-area.has-sidebar,
body.blog .content-area.has-sidebar,
body.archive .content-area.has-sidebar,
body.search .content-area.has-sidebar {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}
}

body.single .primary-content,
body.single .primary-content > article,
body.single .entry-content,
body.single .entry-footer,
body.single .post-navigation,
body.single .comments-area,
body.blog .primary-content,
body.archive .primary-content {
max-width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
box-sizing: border-box;
}
