:root { --g1-shadow-3:  3px 3px 0 #2A1640;
--g1-shadow-4:  4px 4px 0 #2A1640;
--g1-shadow-5:  5px 5px 0 #2A1640;
--g1-shadow-6:  6px 6px 0 #2A1640;
--g1-shadow-8:  8px 8px 0 #2A1640;
--g1-shadow-10: 10px 10px 0 #2A1640; --g1-border-thick:  3px solid #2A1640;
--g1-border-medium: 2.5px solid #2A1640;
--g1-border-thin:   2px solid #2A1640; --g1-radius-pill:   999px;
--g1-radius-card:   20px;
--g1-radius-image:  8px;
--g1-radius-button: 10px; --g1-bp-tablet: 1024px;
--g1-bp-mobile: 720px;
}.g1-skip-link {
position: absolute;
left: -9999px;
top: 0;
background: var(--wp--preset--color--aubergine);
color: var(--wp--preset--color--cream);
padding: 12px 18px;
z-index: 9999;
font-weight: 700;
border-radius: 0 0 var(--g1-radius-button) 0;
}
.g1-skip-link:focus { left: 0; } .g1-header {
position: sticky;
top: 0;
z-index: 50;
display: grid;
grid-template-columns: auto 1fr auto;
align-items: center;
gap: 32px;
padding: 18px 40px;
background: var(--wp--preset--color--cream);
border-bottom: var(--g1-border-thick);
} .g1-header__logo {
display: flex;
align-items: center;
gap: 14px;
text-decoration: none;
color: var(--wp--preset--color--aubergine);
}
.g1-header__logo-img {
width: 56px;
height: 56px;
display: block;
}
.g1-header__logo-text {
display: flex;
flex-direction: column;
white-space: nowrap;
}
.g1-header__logo-name {
font-family: var(--wp--preset--font-family--display);
font-size: 24px;
font-weight: 900;
letter-spacing: -0.03em;
line-height: 0.95;
}
.g1-header__logo-dot { color: var(--wp--preset--color--rose); }
.g1-header__logo-tagline {
font-size: 11px;
font-style: italic;
opacity: 0.7;
margin-top: 3px;
letter-spacing: 0.02em;
} .g1-header__nav {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 16px;
font-weight: 700;
text-transform: capitalize;
letter-spacing: 0.01em;
} .g1-nav-pill {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 9px 16px;
border-radius: var(--g1-radius-pill);
border: var(--g1-border-medium);
border-color: transparent;
color: var(--wp--preset--color--aubergine);
text-decoration: none;
cursor: pointer;
transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.g1-nav-pill:hover,
.g1-nav-pill:focus-visible {
border-color: var(--wp--preset--color--aubergine) !important;
box-shadow: var(--g1-shadow-3);
transform: translate(-1px, -1px);
outline: none;
}
.g1-nav-pill__caret {
font-size: 10px;
opacity: 0.6;
margin-left: 2px;
} .g1-nav-pill--rose:hover,
.g1-nav-pill--rose:focus-visible    { background: var(--wp--preset--color--rose);    color: var(--wp--preset--color--cream); }
.g1-nav-pill--corail:hover,
.g1-nav-pill--corail:focus-visible  { background: var(--wp--preset--color--corail);  color: var(--wp--preset--color--cream); }
.g1-nav-pill--citron:hover,
.g1-nav-pill--citron:focus-visible  { background: var(--wp--preset--color--citron);  color: var(--wp--preset--color--aubergine); }
.g1-nav-pill--mint:hover,
.g1-nav-pill--mint:focus-visible    { background: var(--wp--preset--color--mint);    color: var(--wp--preset--color--aubergine); } .g1-nav-group { position: relative; }
.g1-nav-group:hover .g1-nav-pill--citron,
.g1-nav-group:focus-within .g1-nav-pill--citron {
background: var(--wp--preset--color--citron);
border-color: var(--wp--preset--color--aubergine);
} .g1-dropdown {
position: absolute;
top: calc(100% + 14px);
left: 50%;
transform: translateX(-50%) translateY(-4px);
min-width: 400px;
background: var(--wp--preset--color--cream);
border: var(--g1-border-thick);
border-radius: var(--g1-radius-card);
box-shadow: var(--g1-shadow-6);
padding: 10px;
z-index: 200;
opacity: 0;
visibility: hidden;
transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
}
.g1-nav-group:hover .g1-dropdown,
.g1-nav-group:focus-within .g1-dropdown {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
}
.g1-dropdown__arrow {
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%) rotate(45deg);
width: 16px;
height: 16px;
background: var(--wp--preset--color--cream);
border-left: var(--g1-border-thick);
border-top: var(--g1-border-thick);
}
.g1-dropdown__heading {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 14px 10px;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
opacity: 0.6;
}
.g1-dropdown__heart {
width: 16px;
height: 16px;
transform: rotate(-8deg);
}
.g1-dropdown__item {
display: flex;
align-items: center;
gap: 14px;
padding: 10px 12px;
border-radius: 12px;
text-decoration: none;
color: var(--wp--preset--color--aubergine);
transition: background 0.12s ease;
}
.g1-dropdown__item:hover,
.g1-dropdown__item:focus-visible {
background: var(--wp--preset--color--citron);
outline: none;
}
.g1-dropdown__num {
font-family: var(--wp--preset--font-family--display);
font-size: 14px;
font-weight: 900;
font-style: italic;
color: var(--wp--preset--color--rose);
width: 20px;
}
.g1-dropdown__thumb {
width: 48px;
height: 48px;
border-radius: 10px;
overflow: hidden;
border: 2px solid var(--wp--preset--color--aubergine);
flex-shrink: 0;
}
.g1-dropdown__thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.g1-dropdown__meta {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
}
.g1-dropdown__name {
font-family: var(--wp--preset--font-family--display);
font-size: 19px;
letter-spacing: -0.01em;
font-weight: 800;
line-height: 1;
}
.g1-dropdown__tag {
font-size: 12px;
opacity: 0.7;
font-weight: 500;
margin-top: 3px;
line-height: 1.2;
} .g1-lang-switcher {
position: absolute;
top: 10px;
right: 14px;
z-index: 100;
display: flex;
align-items: center;
gap: 4px;
font-size: 10px;
font-weight: 600;
padding: 4px 8px;
letter-spacing: 0.05em;
}
.g1-lang-switcher__pill,
.g1-lang-switcher__link {
padding: 2px 7px;
border-radius: var(--g1-radius-pill);
text-decoration: none;
color: var(--wp--preset--color--aubergine);
}
.g1-lang-switcher__pill--current {
background: var(--wp--preset--color--rose);
color: var(--wp--preset--color--cream);
font-weight: 800;
}
.g1-lang-switcher__link {
opacity: 0.55;
transition: opacity 0.15s ease;
}
.g1-lang-switcher__link:hover,
.g1-lang-switcher__link:focus-visible {
opacity: 1;
outline: none;
}
.g1-lang-switcher__sep { opacity: 0.35; } .g1-burger {
display: none;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
background: var(--wp--preset--color--citron);
border: var(--g1-border-thick);
border-radius: 12px;
box-shadow: var(--g1-shadow-3);
cursor: pointer;
padding: 0;
}
.g1-burger__bars {
display: block;
width: 22px;
height: 3px;
background: var(--wp--preset--color--aubergine);
border-radius: 2px;
position: relative;
}
.g1-burger__bars::before,
.g1-burger__bars::after {
content: '';
position: absolute;
left: 0;
width: 22px;
height: 3px;
background: var(--wp--preset--color--aubergine);
border-radius: 2px;
}
.g1-burger__bars::before { top: -7px; }
.g1-burger__bars::after  { top: 7px; } .g1-mobile-menu {
position: fixed;
inset: 0;
background: var(--wp--preset--color--aubergine);
color: var(--wp--preset--color--cream);
z-index: 1000;
padding: 20px;
display: none;
flex-direction: column;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.g1-mobile-menu--open { display: flex; }
.g1-mobile-menu[hidden] { display: none; }
.g1-mobile-menu--open[hidden] { display: flex; }
.g1-mobile-menu__head {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
}
.g1-mobile-menu__brand {
display: flex;
align-items: center;
gap: 12px;
}
.g1-mobile-menu__brand img {
width: 40px;
height: 40px;
}
.g1-mobile-menu__name {
font-family: var(--wp--preset--font-family--display);
font-size: 18px;
font-weight: 900;
letter-spacing: -0.03em;
}
.g1-mobile-menu__close {
background: var(--wp--preset--color--citron);
color: var(--wp--preset--color--aubergine);
border: var(--g1-border-thick);
border-color: var(--wp--preset--color--cream);
border-radius: 12px;
width: 44px;
height: 44px;
font-size: 20px;
cursor: pointer;
font-weight: 900;
}
.g1-mobile-menu__body {
display: flex;
flex-direction: column;
gap: 28px;
flex: 1;
} .g1-mobile-menu__platforms {
display: flex;
flex-direction: column;
gap: 8px;
}
.g1-mobile-menu__platforms-heading {
display: flex;
align-items: center;
gap: 8px;
font-family: var(--wp--preset--font-family--editorial);
font-size: 11px;
font-style: italic;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--wp--preset--color--citron);
opacity: 0.85;
margin-bottom: 4px;
}
.g1-mobile-menu__platforms-heading img {
width: 18px;
height: 18px;
transform: rotate(-8deg);
}
.g1-mobile-menu__platform {
display: flex;
align-items: center;
gap: 14px;
padding: 10px 12px;
border-radius: 14px;
background: rgba(255, 244, 232, 0.06);
text-decoration: none;
color: var(--wp--preset--color--cream);
transition: background 0.15s ease;
}
.g1-mobile-menu__platform:hover,
.g1-mobile-menu__platform:focus-visible {
background: rgba(255, 226, 90, 0.18); outline: none;
}
.g1-mobile-menu__platform-num {
display: inline-block;
font-family: var(--wp--preset--font-family--display);
font-size: 18px;
font-weight: 900;
font-style: italic;
color: var(--wp--preset--color--rose);
width: 26px;
flex-shrink: 0;
}
.g1-mobile-menu__platform-thumb {
display: block;
width: 56px;
height: 56px;
border-radius: 12px;
overflow: hidden;
border: 2px solid var(--wp--preset--color--cream);
flex-shrink: 0;
}
.g1-mobile-menu__platform-thumb img {
width: 56px;
height: 56px;
object-fit: cover;
display: block;
}
.g1-mobile-menu__platform-meta {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
}
.g1-mobile-menu__platform-name {
font-family: var(--wp--preset--font-family--display);
font-size: 20px;
letter-spacing: -0.01em;
font-weight: 800;
line-height: 1;
}
.g1-mobile-menu__platform-tag {
font-size: 13px;
opacity: 0.75;
font-weight: 500;
margin-top: 4px;
line-height: 1.25;
} .g1-mobile-menu__nav {
display: flex;
flex-direction: column;
gap: 0;
border-top: 1px solid rgba(255, 244, 232, 0.15);
}
.g1-mobile-menu__nav a {
color: var(--wp--preset--color--cream);
text-decoration: none;
font-family: var(--wp--preset--font-family--display);
font-size: 26px;
padding: 14px 0;
border-bottom: 1px solid rgba(255, 244, 232, 0.15);
letter-spacing: -0.01em;
}
.g1-mobile-menu__nav a:hover,
.g1-mobile-menu__nav a:focus-visible {
color: var(--wp--preset--color--citron);
outline: none;
} .g1-mobile-menu__lang {
display: flex;
flex-direction: column;
gap: 10px;
}
.g1-lang-switcher--mobile {
position: static;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 6px;
font-size: 14px;
padding: 0;
letter-spacing: 0.05em;
}
.g1-lang-switcher--mobile .g1-lang-switcher__pill,
.g1-lang-switcher--mobile .g1-lang-switcher__link {
padding: 8px 14px;
font-size: 14px;
color: var(--wp--preset--color--cream);
border: 1.5px solid rgba(255, 244, 232, 0.33);
}
.g1-lang-switcher--mobile .g1-lang-switcher__pill--current {
background: var(--wp--preset--color--rose);
color: var(--wp--preset--color--cream);
border-color: var(--wp--preset--color--rose);
}
.g1-lang-switcher--mobile .g1-lang-switcher__link {
opacity: 0.85;
text-decoration: none;
}
.g1-lang-switcher--mobile .g1-lang-switcher__link:hover,
.g1-lang-switcher--mobile .g1-lang-switcher__link:focus-visible {
opacity: 1;
background: var(--wp--preset--color--citron);
color: var(--wp--preset--color--aubergine);
border-color: var(--wp--preset--color--citron);
}
.g1-lang-switcher--mobile .g1-lang-switcher__sep {
display: none;
} .g1-mobile-menu__cta {
margin-top: 24px;
padding: 16px;
background: var(--wp--preset--color--corail);
color: var(--wp--preset--color--aubergine);
border: var(--g1-border-thick);
border-color: var(--wp--preset--color--cream);
border-radius: 14px;
font-weight: 700;
text-align: center;
text-decoration: none;
font-size: 16px;
flex-shrink: 0;
} body.g1-no-scroll {
overflow: hidden;
} .g1-footer {
background: var(--wp--preset--color--aubergine);
color: var(--wp--preset--color--cream);
border-top: var(--g1-border-thick);
} .g1-footer__top {
padding: 80px 40px 56px;
border-bottom: 1px solid rgba(255, 244, 232, 0.13);
}
.g1-footer__top-inner {
max-width: 760px;
}
.g1-footer__brand {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 24px;
}
.g1-footer__logo-img {
filter: brightness(1.05);
}
.g1-footer__brand-name {
font-family: var(--wp--preset--font-family--display);
font-size: 28px;
font-weight: 900;
letter-spacing: -0.03em;
line-height: 1;
}
.g1-footer__brand-dot {
color: var(--wp--preset--color--rose);
}
.g1-footer__brand-tagline {
font-size: 12px;
font-style: italic;
opacity: 0.65;
margin-top: 4px;
letter-spacing: 0.04em;
}
.g1-footer__manifesto {
font-family: var(--wp--preset--font-family--editorial);
font-style: italic;
font-size: 22px;
line-height: 1.45;
font-weight: 400;
margin: 0;
max-width: 560px;
opacity: 0.92;
}
.g1-footer__manifesto em {
color: var(--wp--preset--color--citron);
font-style: normal;
font-weight: 700;
}
.g1-footer__col-title {
font-family: var(--wp--preset--font-family--editorial);
font-size: 11px;
font-style: italic;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--wp--preset--color--citron);
opacity: 0.85;
} .g1-footer__cols {
padding: 56px 40px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 48px;
border-bottom: 1px solid rgba(255, 244, 232, 0.13);
}
.g1-footer__col-list {
list-style: none;
margin: 18px 0 0;
padding: 0;
display: grid;
gap: 10px;
}
.g1-footer__col-list a {
font-size: 14px;
color: var(--wp--preset--color--cream);
text-decoration: none;
opacity: 0.85;
transition: opacity 0.15s ease, color 0.15s ease;
}
.g1-footer__col-list a:hover,
.g1-footer__col-list a:focus-visible {
opacity: 1;
color: var(--wp--preset--color--citron);
outline: none;
} .g1-footer__legal {
padding: 24px 40px 28px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 16px;
font-size: 12px;
opacity: 0.55;
}
.g1-footer__legal-age {
font-style: italic;
} @media (max-width: 1024px) {
.g1-footer__cols {
grid-template-columns: repeat(2, 1fr);
gap: 36px;
}
}
@media (max-width: 720px) {
.g1-header {
grid-template-columns: 1fr auto;
padding: 14px 20px;
gap: 14px;
}
.g1-header__nav { display: none; }
.g1-header > .g1-lang-switcher { display: none; }
.g1-burger { display: flex; }
.g1-header__logo-name { font-size: 18px; }
.g1-header__logo-img { width: 44px; height: 44px; }
.g1-footer__top {
padding: 56px 20px 36px;
}
.g1-footer__cols {
padding: 36px 20px;
grid-template-columns: 1fr 1fr;
gap: 28px;
}
.g1-footer__manifesto {
font-size: 18px;
}
.g1-footer__legal {
padding: 20px;
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
} .g1-mobile-menu--open ~ .g1-header,
body.g1-no-scroll .g1-header { }*, *::before, *::after {
box-sizing: border-box;
}
body {
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color: inherit;
}
img {
max-width: 100%;
height: auto;
display: block;
} .g1-fallback,
.g1-blog,
.g1-article {
padding: 4rem 1.5rem;
max-width: 1200px;
margin: 0 auto;
}
.g1-fallback h1,
.g1-blog h1,
.g1-article h1 {
font-family: var(--wp--preset--font-family--display);
margin: 0 0 1rem;
}
.g1-fallback p,
.g1-blog p {
font-family: var(--wp--preset--font-family--body);
font-size: var(--wp--preset--font-size--lead);
color: var(--wp--preset--color--aubergine);
} .g1-site-main {
min-height: 50vh;
}.g1-blog-hero {
padding: 60px 40px 32px;
position: relative;
}
.g1-blog-hero__title {
font-family: var(--wp--preset--font-family--display);
font-size: 132px;
line-height: 0.9;
letter-spacing: -0.04em;
font-weight: 900;
margin: 0 0 12px;
color: var(--wp--preset--color--aubergine);
}
.g1-blog-hero__italic {
font-style: italic;
color: var(--wp--preset--color--corail);
}
.g1-blog-hero__sticker {
background: var(--wp--preset--color--citron);
color: var(--wp--preset--color--aubergine);
padding: 0 14px;
border-radius: 22px;
display: inline-block;
transform: rotate(-1.5deg);
border: 4px solid var(--wp--preset--color--aubergine);
margin-left: 16px;
font-size: 90px;
line-height: 1.1;
}
.g1-blog-hero__intro {
font-family: Georgia, "Times New Roman", serif;
font-style: italic;
font-size: 22px;
line-height: 1.45;
max-width: 760px;
margin: 20px 0 0;
opacity: 0.85;
color: var(--wp--preset--color--aubergine);
} .g1-blog-section {
padding: 20px 40px 60px;
}
.g1-blog-section--last {
padding-bottom: 100px;
}
.g1-blog-section-header {
display: flex;
align-items: baseline;
gap: 18px;
margin-bottom: 32px;
}
.g1-blog-section__title {
font-family: var(--wp--preset--font-family--display);
font-size: 36px;
font-weight: 900;
margin: 0;
letter-spacing: -0.02em;
color: var(--wp--preset--color--aubergine);
}
.g1-blog__italic-rose {
font-style: italic;
color: var(--wp--preset--color--rose);
}
.g1-blog__italic-corail {
font-style: italic;
color: var(--wp--preset--color--corail);
}
.g1-blog-section__rule {
flex: 1;
height: 1px;
background: var(--wp--preset--color--aubergine);
opacity: 0.15;
} .g1-blog-hero-article {
display: grid;
grid-template-columns: 1.4fr 1fr;
gap: 56px;
align-items: center;
text-decoration: none;
color: inherit;
}
.g1-blog-hero-article__frame {
background: var(--wp--preset--color--rose);
padding: 14px;
border-radius: 8px;
transform: rotate(-1deg);
box-shadow: var(--g1-shadow-8);
transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.g1-blog-hero-article:hover .g1-blog-hero-article__frame,
.g1-blog-hero-article:focus-visible .g1-blog-hero-article__frame {
transform: rotate(0deg) translate(-3px, -3px);
box-shadow: var(--g1-shadow-10);
}
.g1-blog-hero-article__img-wrap {
aspect-ratio: 4 / 3;
overflow: hidden;
background: #eee;
}
.g1-blog-hero-article__img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.g1-blog-hero-article__body {
color: var(--wp--preset--color--aubergine);
}
.g1-blog-hero-article__meta {
display: inline-flex;
align-items: center;
gap: 10px;
margin-bottom: 18px;
}
.g1-blog-hero-article__badge {
background: var(--wp--preset--color--aubergine);
color: var(--wp--preset--color--cream);
padding: 5px 12px;
border-radius: 999px;
font-family: var(--wp--preset--font-family--body);
font-size: 11px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.g1-blog-hero-article__date {
font-family: var(--wp--preset--font-family--body);
font-size: 11px;
font-weight: 600;
opacity: 0.6;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.g1-blog-hero-article__title {
font-family: var(--wp--preset--font-family--display);
font-size: 56px;
line-height: 1.0;
font-weight: 900;
margin: 0 0 22px;
letter-spacing: -0.02em;
}
.g1-blog-hero-article__excerpt {
font-family: Georgia, "Times New Roman", serif;
font-style: italic;
font-size: 18px;
line-height: 1.5;
opacity: 0.78;
margin: 0 0 24px;
max-width: 480px;
} .g1-blog-essentiels-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 44px;
} .g1-blog-grid-mix {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 40px;
row-gap: 64px;
}
.g1-blog-card-wrap--l { grid-column: span 4; }
.g1-blog-card-wrap--m { grid-column: span 2; } .g1-blog-card {
color: inherit;
text-decoration: none;
display: flex;
flex-direction: column;
gap: 16px;
}
.g1-blog-card--essentiel {
gap: 20px;
}
.g1-blog-card__frame {
padding: 9px;
border-radius: 6px;
transform: rotate(var(--g1-rot, 0deg));
box-shadow: var(--g1-shadow-4);
transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.g1-blog-card--l .g1-blog-card__frame {
padding: 12px;
box-shadow: var(--g1-shadow-6);
}
.g1-blog-card__frame--essentiel {
padding: 12px;
box-shadow: var(--g1-shadow-5);
}
.g1-blog-card__frame--rose   { background: var(--wp--preset--color--rose); }
.g1-blog-card__frame--citron { background: var(--wp--preset--color--citron); }
.g1-blog-card__frame--mint   { background: var(--wp--preset--color--mint); }
.g1-blog-card__frame--corail { background: var(--wp--preset--color--corail); }
.g1-blog-card__frame--cream  { background: var(--wp--preset--color--cream); border: var(--g1-border-thin); }
.g1-blog-card:hover .g1-blog-card__frame,
.g1-blog-card:focus-visible .g1-blog-card__frame {
transform: rotate(0deg) translate(-2px, -2px);
box-shadow: var(--g1-shadow-6);
}
.g1-blog-card--l:hover .g1-blog-card__frame,
.g1-blog-card--l:focus-visible .g1-blog-card__frame,
.g1-blog-card--essentiel:hover .g1-blog-card__frame,
.g1-blog-card--essentiel:focus-visible .g1-blog-card__frame {
box-shadow: var(--g1-shadow-8);
}
.g1-blog-card__img-wrap {
aspect-ratio: 4 / 3;
overflow: hidden;
background: #eee;
}
.g1-blog-card__img-wrap--l { aspect-ratio: 16 / 9; }
.g1-blog-card__img-wrap--m { aspect-ratio: 4 / 3; }
.g1-blog-card__img-wrap--essentiel { aspect-ratio: 16 / 10; }
.g1-blog-card__img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.g1-blog-card__body {
color: var(--wp--preset--color--aubergine);
}
.g1-blog-card__date {
display: block;
font-family: var(--wp--preset--font-family--body);
font-size: 10px;
font-weight: 700;
opacity: 0.55;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 6px;
}
.g1-blog-card--essentiel .g1-blog-card__date {
font-size: 11px;
margin-bottom: 8px;
}
.g1-blog-card__title {
font-family: var(--wp--preset--font-family--display);
font-size: 19px;
line-height: 1.1;
margin: 0;
font-weight: 700;
letter-spacing: -0.01em;
}
.g1-blog-card__title--l { font-size: 28px; }
.g1-blog-card__title--m { font-size: 19px; }
.g1-blog-card__title--essentiel {
font-size: 30px;
font-weight: 800;
line-height: 1.05;
} @media (max-width: 1024px) {
.g1-blog-hero,
.g1-blog-section {
padding-left: 28px;
padding-right: 28px;
}
.g1-blog-hero__title {
font-size: 96px;
}
.g1-blog-hero__sticker {
font-size: 64px;
}
.g1-blog-hero-article {
grid-template-columns: 1fr;
gap: 24px;
}
.g1-blog-hero-article__title {
font-size: 44px;
}
.g1-blog-grid-mix {
grid-template-columns: repeat(4, 1fr);
}
.g1-blog-card-wrap--l { grid-column: span 4; }
.g1-blog-card-wrap--m { grid-column: span 2; }
}
@media (max-width: 720px) {
.g1-blog-hero {
padding: 36px 20px 24px;
}
.g1-blog-section {
padding: 0 20px 48px;
}
.g1-blog-section--last {
padding-bottom: 80px;
}
.g1-blog-hero__title {
font-size: 56px;
line-height: 0.95;
letter-spacing: -0.03em;
}
.g1-blog-hero__sticker {
font-size: 40px;
padding: 0 10px;
border-width: 3px;
margin-left: 6px;
}
.g1-blog-hero__intro {
font-size: 17px;
}
.g1-blog-section__title {
font-size: 24px;
}
.g1-blog-hero-article__title {
font-size: 32px;
}
.g1-blog-hero-article__excerpt {
font-size: 16px;
}
.g1-blog-essentiels-grid {
grid-template-columns: 1fr;
gap: 36px;
}
.g1-blog-grid-mix {
grid-template-columns: 1fr;
gap: 32px;
}
.g1-blog-card-wrap--l,
.g1-blog-card-wrap--m { grid-column: auto; }
.g1-blog-card__img-wrap--l { aspect-ratio: 4 / 3; }
.g1-blog-card__title--l { font-size: 22px; }
.g1-blog-card__title--essentiel { font-size: 22px; }
}