/* =========================================================
BLUUPI — BLOG DESKTOP
Fichier : /blog/css/desktop/blog.css
========================================================= */

@media (min-width:1200px){

/* =========================================================
1. DESKTOP / MOBILE
========================================================= */

.bottom-nav,
.floating-mic{
display:none !important;
}

.desktop-header,
.desktop-footer{
display:block !important;
}

.desktop-header{
position:relative !important;
z-index:50 !important;
overflow:visible !important;
}

/* =========================================================
2. PAGE BLOG
========================================================= */

.blog-page{
width:100%;
max-width:1280px;
margin:0 auto;
padding:42px 0 96px;
background:transparent;
position:relative;
z-index:1;
}

/* =========================================================
3. HERO BLOG
========================================================= */

.blog-hero{
width:100%;
min-height:500px;
margin:0 auto 56px;
padding:70px 78px 60px;


display:flex;
align-items:center;

position:relative;
z-index:1;
overflow:hidden;

border-radius:46px;
background:
  radial-gradient(circle at 9% 16%, rgba(255,222,145,.32) 0%, rgba(255,222,145,0) 34%),
  radial-gradient(circle at 92% 62%, rgba(92,216,244,.34) 0%, rgba(92,216,244,0) 42%),
  linear-gradient(135deg,#fff8e6 0%,#ffffff 48%,#edf8fd 100%);

box-shadow:0 30px 86px rgba(14,62,97,.105);


}

.blog-hero::before{
content:"";
position:absolute;
right:-140px;
bottom:-180px;
width:540px;
height:540px;
border-radius:50%;
background:rgba(60,166,214,.13);
pointer-events:none;
}

.blog-hero::after{
content:"";
position:absolute;
left:-115px;
top:-130px;
width:350px;
height:350px;
border-radius:50%;
background:rgba(255,214,122,.16);
pointer-events:none;
}

.blog-hero-content{
width:100%;
max-width:800px;
position:relative;
z-index:2;
}

.blog-kicker{
display:inline-flex;
align-items:center;
gap:8px;


margin:0 0 22px;
padding:9px 16px;

border-radius:999px;
background:rgba(18,113,148,.10);
color:#127194;

font-size:14px;
font-weight:900;
line-height:1;


}

.blog-kicker::before{
content:"📰";
}

.blog-hero h1{
max-width:860px;
margin:0 0 18px;


color:#0E3E61;
font-family:"Baloo 2", Inter, system-ui, sans-serif;
font-size:64px;
line-height:.98;
font-weight:900;
letter-spacing:-.058em;


}

.blog-hero p{
max-width:720px;
margin:0;


color:#5f7180;
font-size:20px;
line-height:1.48;
font-weight:650;


}

.blog-hero-actions{
margin-top:30px;


display:flex;
align-items:center;
gap:16px;


}

.blog-hero-actions .btn-primary,
.blog-hero-actions .btn-secondary{
min-height:58px;
padding:0 34px;


display:inline-flex;
align-items:center;
justify-content:center;

border-radius:20px;

font-size:15px;
font-weight:900;
text-decoration:none;

transition:
  transform .18s ease,
  box-shadow .18s ease,
  background .18s ease;


}

.blog-hero-actions .btn-primary{
background:#0E3E61;
color:#fff;
box-shadow:0 15px 32px rgba(14,62,97,.22);
}

.blog-hero-actions .btn-secondary{
background:rgba(255,255,255,.80);
color:#0E3E61;
border:1px solid rgba(14,62,97,.08);
box-shadow:0 9px 22px rgba(14,62,97,.05);
}

.blog-hero-actions .btn-primary:hover,
.blog-hero-actions .btn-secondary:hover{
transform:translateY(-2px);
}

.blog-hero-actions .btn-primary:hover

/* =========================================================
4. SECTION ARTICLES
========================================================= */

.blog-section{
width:100%;
margin:0 auto;
}

.blog-section-head{
margin:0 0 28px;


display:flex;
align-items:flex-end;
justify-content:space-between;
gap:32px;


}

.blog-section-head h2{
margin:0 0 8px;


color:#0E3E61;
font-family:"Baloo 2", Inter, system-ui, sans-serif;
font-size:44px;
line-height:1.05;
font-weight:900;
letter-spacing:-.045em;


}

.blog-section-head p{
max-width:680px;
margin:0;


color:#657789;
font-size:18px;
line-height:1.5;
font-weight:600;

}

/* =========================================================
5. GRILLE ARTICLES
========================================================= */

.blog-grid{
width:100%;
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:24px;
}

/* =========================================================
6. CARTE ARTICLE
========================================================= */

.blog-card{
width:100%;
height:100%;
overflow:hidden;


background:#fff;
border:1px solid rgba(14,62,97,.07);
border-radius:24px;
box-shadow:0 16px 38px rgba(14,62,97,.08);

transition:
  transform .18s ease,
  box-shadow .18s ease;

}

.blog-card:hover{
transform:translateY(-3px);
box-shadow:0 22px 48px rgba(14,62,97,.13);
}

.blog-card-media{
position:relative;
width:100%;
height:210px;
overflow:hidden;
background:#eaf2f7;
}

.blog-card-media img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .28s ease;
}

.blog-card:hover .blog-card-media img{
transform:scale(1.035);
}

.blog-card-content{
padding:22px;
}

.blog-tags{
display:flex;
flex-wrap:wrap;
gap:7px;
margin-bottom:14px;
}

.blog-tags span{
min-height:28px;
padding:0 10px;


display:inline-flex;
align-items:center;

border-radius:999px;
background:#f0f6fa;
color:#607080;

font-size:11px;
font-weight:900;
line-height:1;
white-space:nowrap;


}

.blog-tags span:first-child{
background:rgba(18,113,148,.10);
color:#127194;
}

.blog-card h3{
margin:0 0 12px;


color:#0E3E61;
font-family:"Baloo 2", Inter, system-ui, sans-serif;
font-size:25px;
line-height:1.12;
font-weight:900;
letter-spacing:-.04em;


}

.blog-card h3 a{
color:inherit;
text-decoration:none;
}

.blog-card p{
margin:0 0 18px;


color:#40576a;
font-size:15px;
line-height:1.5;
font-weight:600;


}

.read-more{
min-height:46px;
padding:0 18px;


display:inline-flex;
align-items:center;
justify-content:center;

border-radius:999px;
background:#0E3E61;
color:#fff;

font-size:14px;
font-weight:900;
text-decoration:none;

transition:
  transform .18s ease,
  background .18s ease;


}

.read-more:hover{
background:#092f4c;
transform:translateY(-2px);
}

}

/* =========================================================
GRAND DESKTOP
========================================================= */

@media (min-width:1440px){

.blog-page{
max-width:1320px;
}

.blog-hero{
min-height:520px;
}

.blog-hero h1{
font-size:68px;
}

}
.blog-back-link {
  margin-bottom: 22px;
  font-size: 15px;
}

.blog-back-link:hover {
  color: #0E3E61;
  transform: translateX(-2px);
}