/*
Theme Name: AiroBio Theme
Theme URI: https://airobio.fr
Author: AiroBio
Author URI: https://airobio.fr
Description: Thème professionnel pour entreprise de dératisation, désinsectisation et désinfection. Entièrement personnalisable via le customizer WordPress.
Version: 1.2.0
Requires at least: 5.5
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: airobio
Tags: custom-menu, custom-logo, custom-background, featured-images, full-width-template, theme-options
*/

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

:root {
    --color-primary: #3d8a8e;
    --color-primary-dark: #2d6e72;
    --color-primary-light: #5aa5a9;
    --color-accent: #2ecc71;
    --color-accent-dark: #27ae60;
    --color-dark: #1a2a2b;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-bg-light: #f5f7f7;
    --color-border: #e0e8e8;
    --color-topbar: #e8eded;
    --font-heading: 'Oswald', 'Arial Black', sans-serif;
    --font-body: 'Open Sans', Arial, sans-serif;
    --shadow-card: 0 2px 12px rgba(0,0,0,0.10);
    --shadow-hover: 0 8px 28px rgba(0,0,0,0.18);
    --transition: 0.25s ease;
    --radius: 6px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    font-size: 15px;
    line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

/* ===========================
   TOPBAR
=========================== */
.site-topbar {
    background: var(--color-topbar);
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.topbar-contact a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: underline;
    color: var(--color-text);
    transition: color var(--transition);
}

.topbar-contact a:hover { color: var(--color-primary); }

/* ===========================
   HEADER / NAVIGATION
=========================== */
.site-header {
    background: var(--color-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    min-height: 80px;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
    margin-right: 40px;
}

.site-logo a { display: flex; align-items: center; gap: 6px; }

/* Logo — utilise le logo uploadé via Personnaliser → Identité du site */
.site-logo a,
.site-logo .custom-logo-link {
    display: flex;
    align-items: center;
    background: transparent !important;
    text-decoration: none;
}

.site-logo img,
.site-logo .custom-logo,
.header-logo-img {
    height: 60px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
    background: transparent !important;
    /* Pas de filtre : le logo s'affiche tel quel */
    filter: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -1px;
    line-height: 1;
}

.logo-tagline {
    font-size: 9px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    white-space: nowrap;
}

/* Primary Navigation */
.primary-nav { flex: 1; }

.primary-nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
    height: 80px;
}

.primary-nav > ul > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.primary-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-white);
    height: 100%;
    transition: background var(--transition);
    white-space: nowrap;
}

.primary-nav > ul > li > a:hover,
.primary-nav > ul > li:hover > a {
    background: rgba(0,0,0,0.2);
}

/* Dropdown arrow */
.primary-nav > ul > li.menu-item-has-children > a::after {
    content: '▾';
    font-size: 12px;
    opacity: 0.85;
}

/* Dropdown */
.primary-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-primary-dark);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 999;
    border-top: 3px solid var(--color-accent);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.primary-nav li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-nav .sub-menu li a {
    display: block;
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-white);
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background var(--transition), padding-left var(--transition);
}

.primary-nav .sub-menu li a:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 28px;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    margin-left: auto;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark) center/cover no-repeat;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,35,40,0.88) 0%, rgba(15,35,40,0.55) 55%, rgba(15,35,40,0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px;
}

.hero-inner {
    max-width: 560px;
}

.hero-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--color-white);
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-title .title-highlight {
    display: block;
    font-size: clamp(32px, 4.5vw, 50px);
}

.hero-description {
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 440px;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

/* ===========================
   FEATURES BAR
=========================== */
.features-bar {
    background: var(--color-white);
    padding: 36px 24px;
    border-bottom: 1px solid var(--color-border);
}

.features-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 38px;
    height: 38px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 1.5;
}

.feature-icon.flag-icon {
    font-size: 36px;
    line-height: 1;
}

.feature-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
}

/* ===========================
   SERVICES SECTION
=========================== */
.services-section {
    background: var(--color-bg-light);
    padding: 60px 24px;
}

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

.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(22px, 3vw, 32px);
    color: var(--color-dark);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 14px;
    color: var(--color-text-light);
    max-width: 900px;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition), transform var(--transition);
    cursor: pointer;
}

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

.service-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.service-card-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.service-card-body {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex: 1;
}

.service-card-btn {
    width: 42px;
    height: 42px;
    background: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 12px;
    transition: background var(--transition);
}

.service-card:hover .service-card-btn {
    background: var(--color-primary-dark);
}

.service-card-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--color-white);
    stroke: none;
}

.service-card-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 50px 24px 30px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.85;
}

.footer-contact p,
.footer-contact a {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    display: block;
    line-height: 1.8;
    transition: opacity var(--transition);
}

.footer-contact a:hover { opacity: 0.7; text-decoration: underline; }

.footer-logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.footer-logo-area .logo-brand { font-size: 36px; color: white; }
.footer-logo-area .logo-tagline { color: rgba(255,255,255,0.7); font-size: 10px; letter-spacing: 1px; }

.footer-siret {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
}

.footer-social { text-align: right; }

.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    opacity: 0.85;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: opacity var(--transition);
}

.social-link:hover { opacity: 0.85; }

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-logo-area { grid-column: 1 / -1; order: -1; }
}

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

    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-primary-dark);
        z-index: 999;
    }

    .primary-nav.is-open { display: block; }

    .primary-nav > ul {
        flex-direction: column;
        height: auto;
        padding: 12px 0;
    }

    .primary-nav > ul > li { width: 100%; height: auto; }

    .primary-nav > ul > li > a {
        height: auto;
        padding: 12px 24px;
        width: 100%;
    }

    .primary-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background: rgba(0,0,0,0.15);
    }

    .header-inner { position: relative; flex-wrap: wrap; }
    .hero-section { min-height: 420px; }
    .hero-title { font-size: 26px; }
}

@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .social-links { justify-content: flex-start; }
    .footer-social { text-align: left; }
    .features-inner { justify-content: center; }
}

/* ===========================
   ADMIN BAR FIX
=========================== */
.admin-bar .site-header { top: 32px; }

@media screen and (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
}

/* ===========================
   WP CORE ALIGNMENTS
=========================== */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { margin-left: auto; margin-right: auto; display: block; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--color-text-light); text-align: center; }
.screen-reader-text { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; }

/* ===========================
   INNER PAGE HERO
=========================== */
.page-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Solid dark fallback — always visible even with no image */
    background-color: #1a2a2b;
}

.page-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(10,25,30,0.90) 0%,
        rgba(10,25,30,0.65) 55%,
        rgba(10,25,30,0.25) 100%
    );
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-hero-inner {
    max-width: 580px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.6);
    line-height: 1.05;
}

.page-hero-desc {
    color: rgba(255,255,255,0.90);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 480px;
    text-align: justify;
}

.page-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===========================
   INNER PAGE CONTENT AREA
=========================== */
.page-content-wrapper {
    background: #eef4f4;
    padding: 40px 24px 60px;
}

/* Le wrapper intérieur est transparent — les blocs s'affichent directement */
.page-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.page-inner-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 36px);
    color: var(--color-dark);
    text-transform: uppercase;
    margin-bottom: 28px;
}

/* Back bar */
.page-back-bar {
    background: #eef4f4;
    padding: 16px 24px 44px;
}
.page-back-inner { max-width: 1200px; margin: 0 auto; }
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s, border-color .25s;
}
.btn-back:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

/* Responsive inner page */
@media (max-width: 768px) {
    .page-hero { min-height: 260px; }
    .page-hero-content { padding: 40px 20px; }
    .page-hero-title { font-size: 28px; }
    .page-content-wrapper { padding: 24px 14px 40px; }
}

/* ===========================
   CONTENT BLOCKS — blocs H2
=========================== */

/* Bloc de base : fond bleu-vert clair, pas de padding (géré par cb-text) */
.content-block {
    background: #cfe0e1;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    overflow: visible; /* allow transparent images to not clip */
}
/* Clip only non-transparent blocks */
.content-block--with-image {
    overflow: hidden;
}
.content-block:last-child { margin-bottom: 0; }

/* Bloc intro (texte avant le premier H2) : transparent */
.content-block--intro {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 0 20px !important;
    border-bottom: 2px solid rgba(61,138,142,0.2);
    margin-bottom: 28px;
}
.content-block--intro p,
.content-block--intro li { color: #253535; }

/* Bloc avec image : flex stretch pour que l'image prenne toute la hauteur */
.content-block--with-image {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow: visible;
}

/* Alternance gauche/droite */
.content-block--img-left  .cb-image { order: 1; }
.content-block--img-left  .cb-text  { order: 2; }
.content-block--img-right .cb-image { order: 2; }
.content-block--img-right .cb-text  { order: 1; }

/* Zone image : largeur fixe, hauteur = hauteur du bloc */
.cb-image {
    /* Largeur automatique selon l'image, hauteur = hauteur du bloc */
    flex: 0 0 auto;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cfe0e1 !important;
    padding: 12px;
    min-width: 80px;
    max-width: 45%;
}

/* Image : hauteur 100% du bloc, largeur auto selon ratio */
.cb-image img {
    display: block;
    height: 100% !important;
    width: auto !important;
    max-width: 100%;
    object-fit: contain !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}
.cb-image figure {
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}
.cb-image figure img {
    height: 100% !important;
    width: auto !important;
}

/* Zone texte */
.cb-text {
    flex: 1;
    min-width: 0;
    padding: 30px 36px;
}
.cb-text--full {
    width: 100%;
    padding: 30px 36px;
}

/* Typography dans les blocs */
.content-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.8vw, 19px);
    font-weight: 900;
    color: #1a2a2b;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0 0 14px;
    padding: 0;
    border: none;
    line-height: 1.2;
}
.content-block h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary-dark);
    text-transform: none;
    margin: 16px 0 6px;
}
.content-block p {
    font-size: 14px;
    line-height: 1.8;
    color: #253535;
    margin-bottom: 10px;
    text-align: left;
}
.content-block ul,
.content-block ol {
    padding-left: 20px;
    margin: 8px 0 12px;
}
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li {
    font-size: 14px;
    line-height: 1.75;
    color: #253535;
    margin-bottom: 6px;
}
.content-block strong { font-weight: 700; color: #1a2a2b; }
.content-block a { color: var(--color-primary); text-decoration: underline; }
.content-block a:hover { color: var(--color-primary-dark); }
.content-block blockquote {
    background: rgba(61,138,142,0.15);
    border-left: 4px solid var(--color-primary);
    padding: 14px 18px;
    margin: 14px 0;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    color: #253535;
    line-height: 1.75;
}

/* Responsive blocks */
@media (max-width: 800px) {
    .content-block--with-image { flex-direction: column; }
    .content-block--img-left  .cb-image,
    .content-block--img-right .cb-image { order: 1; }
    .content-block--img-left  .cb-text,
    .content-block--img-right .cb-text  { order: 2; }
    .cb-image { flex: 0 0 auto; width: 100%; padding: 16px; }
    .cb-image img { height: auto; max-height: 260px; width: auto; max-width: 100%; margin: 0 auto !important; }
    .cb-text, .cb-text--full { padding: 22px 18px; }
}
