/* =========================================
COVER STORY
========================================= */

.odai_cover_story{

    position:relative;

    width:100%;

    background:#000;

    overflow:hidden;

}

.odai_cover_link{

    display:block;

    width:100%;

    position:relative;

    color:#fff;

    text-decoration:none;

}

.odai_cover_image{

    display:block;

    width:100%;

    height:auto;

    object-fit:contain;

    object-position:center center;

}

/* zoom léger uniquement sur desktop */
.odai_cover_story:hover .odai_cover_image{

    transform:scale(1.02);

}

.odai_cover_overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.40) 35%,
        rgba(0,0,0,.05) 100%
    );

}
/* =========================================
CONTENT
========================================= */

.odai_cover_content{

    position:absolute;

    left:80px;

    bottom:80px;

    z-index:5;

    max-width:700px;

}

.odai_cover_profession{

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    margin-bottom:20px;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border-radius:40px;

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.odai_cover_title{

    margin:0 0 20px;

    font-size:clamp(48px,7vw,96px);

    line-height:1;

    font-weight:700;

    text-transform:uppercase;

    color:#fff;

}

.odai_cover_quote{

    margin:0;

    max-width:650px;

    font-size:20px;

    line-height:1.7;

    color:rgba(255,255,255,.92);

}

/* =========================================
INDICATEUR
========================================= */

.odai_cover_read{

    position:absolute;

    right:60px;

    bottom:60px;

    z-index:5;

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    opacity:.75;

    transition:.3s ease;

}

.odai_cover_story:hover .odai_cover_read{

    opacity:1;

    transform:translateX(6px);

}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .odai_cover_story{

        min-height:650px;

    }

    .odai_cover_content{

        left:40px;

        right:40px;

        bottom:40px;

    }

    .odai_cover_quote{

        font-size:18px;

    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .odai_cover_story{

        height:80vh;

        min-height:550px;

    }

    .odai_cover_content{

        left:25px;

        right:25px;

        bottom:25px;

    }

    .odai_cover_title{

        font-size:38px;

    }

    .odai_cover_quote{

        font-size:15px;

        line-height:1.6;

    }

    .odai_cover_profession{

        font-size:10px;

        padding:8px 14px;

    }

    .odai_cover_read{

        display:none;

    }

}
/* =====================================================
RESET
===================================================== */

* {

    box-sizing: border-box;

}

/* =====================================================
FULL HERO
===================================================== */

.odai_hero_full {

    position: relative;

    width: 100%;

    height: 92vh;

    min-height: 760px;

    overflow: hidden;

    background: #111;

}

.odai_hero_full_image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}

.odai_hero_full_overlay {

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.18)
    );

}

/* =====================================================
HERO CONTENT
===================================================== */

.odai_hero_content {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 5;

    text-align: center;

    width: 90%;

    max-width: 900px;

    color: #fff;

}

.odai_cover_title {

    font-size: 72px;

    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 18px;

    color: #fff;

    text-transform: uppercase;

}

.odai_cover_profession {

    display: inline-block;

    margin-bottom: 20px;

    padding: 10px 18px;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(4px);

    font-size: 14px;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.odai_cover_citation {

    font-size: 24px;

    line-height: 1.6;

    font-style: italic;

    margin-bottom: 35px;

    color: rgba(255,255,255,.92);

}

/* =====================================================
BUTTONS
===================================================== */

.odai_hero_buttons {

    display: flex;

    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;

}

.odai_hero_btn {

    min-width: 180px;

    padding: 15px 28px;

    border: 1px solid rgba(255,255,255,.55);

    text-decoration: none;

    color: #fff;

    font-size: 16px;

    background: rgba(0,0,0,.18);

    backdrop-filter: blur(4px);

    transition: .3s ease;

}

.odai_hero_btn:hover {

    background: rgba(255,255,255,.12);

}

/* =====================================================
SECOND SECTION
===================================================== */

.odai_second_section {

    display: grid;

    grid-template-columns: 70% 30%;

    gap: 20px;

    padding: 20px;

    background: #fff;

}

/* =====================================================
SMALL COVERS
===================================================== */

.odai_small_covers {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}

.odai_small_cover_item {

    position: relative;

    height: 320px;

    overflow: hidden;

    background: #111;

}

.odai_small_cover_item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .5s ease;

}

.odai_small_cover_item:hover img {

    transform: scale(1.05);

}

.odai_small_cover_overlay {

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.10)
    );

}

/* =====================================================
SMALL COVER CONTENT
===================================================== */

.odai_small_cover_content {

    position: absolute;

    inset: 0;

    z-index: 5;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 25px;

    color: #fff;

}

.odai_small_cover_content h3 {

    font-size: 24px;

    line-height: 1.3;

    margin-bottom: 10px;

    color: #fff;

}

.odai_small_profession {

    display: inline-block;

    width: fit-content;

    margin-bottom: 14px;

    padding: 8px 14px;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(4px);

    font-size: 11px;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.odai_small_cover_content p {

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 20px;

    color: rgba(255,255,255,.92);

}

.odai_small_cover_content a {

    display: inline-block;

    width: fit-content;

    padding: 10px 20px;

    border: 1px solid rgba(255,255,255,.55);

    color: #fff;

    text-decoration: none;

    background: rgba(0,0,0,.25);

    backdrop-filter: blur(4px);

    transition: .3s ease;

}

.odai_small_cover_content a:hover {

    background: rgba(255,255,255,.12);

}

/* =====================================================
ODAI STUDIO
===================================================== */

.odai_studio_side {

    position: relative;

    overflow: hidden;

    min-height: 320px;

}

.odai_studio_side img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}

.odai_studio_side_overlay {

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.20)
    );

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 30px;

    color: #fff;

}

.odai_studio_side_overlay h2 {

    font-size: 34px;

    margin-bottom: 10px;

}

.odai_studio_side_overlay p {

    font-size: 15px;

    margin-bottom: 20px;

}

.odai_studio_side_overlay a {

    display: inline-block;

    width: fit-content;

    padding: 12px 24px;

    background: #8b1c24;

    color: #fff;

    text-decoration: none;

    transition: .3s ease;

}

.odai_studio_side_overlay a:hover {

    opacity: .9;

}



/* =====================================================
MAGAZINES
===================================================== */

#block_slider_magazines {

    padding-top: 40px;

}

#block_slider_magazines .slider_wrapper {

    overflow: hidden;

    width: 100%;

    position: relative;

}

#block_slider_magazines .slider_container {

    display: flex;

    gap: 20px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding-bottom: 10px;

}

#block_slider_magazines .slider_container::-webkit-scrollbar {

    display: none;

}

#block_slider_magazines .carousel_item {

    flex: 0 0 auto;

    width: 220px;

}

#block_slider_magazines .magazine_cover_a4 {

    width: 100%;

    aspect-ratio: 210 / 297;

    overflow: hidden;

    display: block;

    background: #111;

}

#block_slider_magazines .magazine_cover_a4 img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

}

#block_slider_magazines .content_item_title {

    margin-top: 10px;

    text-align: center;

    line-height: 1.4;

}

/* =====================================================
RESPONSIVE
===================================================== */

@media screen and (max-width: 991px) {

    .odai_hero_full {

        min-height: 650px;

    }

    .odai_cover_title {

        font-size: 48px;

    }

    .odai_cover_citation {

        font-size: 20px;

    }

    .odai_second_section {

        grid-template-columns: 1fr;

    }

    .odai_small_covers {

        grid-template-columns: 1fr;

    }

    .odai_small_cover_item {

        height: 260px;

    }

}

@media screen and (max-width: 576px) {

    .odai_hero_full {

        min-height: 560px;

    }

    .odai_cover_title {

        font-size: 32px;

    }

    .odai_cover_citation {

        font-size: 16px;

    }

    .odai_small_cover_content {

        padding: 18px;

    }

    .odai_small_cover_content h3 {

        font-size: 20px;

    }

    .odai_hero_btn {

        width: 220px;

        text-align: center;

    }

    #block_slider_magazines .carousel_item {

        width: 135px;

    }

}
/* =====================================================
ODAI STORIES
===================================================== */

#block_odai_stories .swiper-wrapper{

    overflow-x:auto;

    scrollbar-width:none;

    gap:15px;

}

#block_odai_stories .swiper-wrapper::-webkit-scrollbar{

    display:none;

}

#block_odai_stories .content_item_cover{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:8px;

    background:#000;

}

.story_item{

    position:relative;

}

/* =====================================================
STORY MODAL
===================================================== */

.story_modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.96);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:999999;

}

.story_modal.active{

    display:flex;

}

.story_modal_content{

    position:relative;

    width:100%;

    max-width:430px;

    height:92vh;

}

.story_modal_content video{

    width:100%;

    height:100%;

    object-fit:contain;

    background:#000;

    border-radius:12px;

}

.story_modal_close{

    position:absolute;

    top:15px;

    right:15px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:30px;

    cursor:pointer;

    z-index:10;

}

.story_modal_title{

    position:absolute;

    left:20px;

    right:20px;

    bottom:25px;

    color:#fff;

    font-size:15px;

    font-weight:600;

    z-index:10;

}


/* =========================================================
ODAI GRID SECTION
========================================================= */

.odai_grid_section{
    display:grid;
    grid-template-columns:3fr 1fr;
    gap:18px;
    margin:50px 0 25px;
    align-items:stretch;
}

/* =========================================================
LEFT GRID (3 CARDS)
========================================================= */

.odai_grid_cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

/* =========================================================
CARD
========================================================= */

.odai_card{
    background:#fafafa;
    border:1px solid #d8d8d8;
    overflow:hidden;
    transition:.35s ease;
    height:100%;
}

.odai_card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.10);
}

.odai_card a{
    display:flex;
    flex-direction:column;
    height:100%;
    text-decoration:none;
    color:inherit;
}

/* IMAGE */

.odai_card_top{
    height:190px;
    overflow:hidden;
    background:#111;
}

.odai_card_top img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .45s ease;
}

.odai_card:hover img{
    transform:scale(1.05);
}

/* HEADER */

.odai_card_header{
    background:linear-gradient(
        90deg,
        #3c0909 0%,
        #6d1313 55%,
        #962323 100%
    );
    color:#fff;
    text-align:center;
    padding:14px 10px;
    font-size:16px;
    font-family:Georgia, serif;
    text-transform:uppercase;
    letter-spacing:.5px;
}

/* BODY */

.odai_card_body{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    padding:28px 18px 30px;
    background:#fbfbfb;
}

.odai_card_subtitle{
    text-align:center;
    color:#444;
    font-size:14px;
    line-height:1.7;
    text-transform:uppercase;
    letter-spacing:.4px;
    margin-bottom:28px;
}

/* BUTTON */

.odai_btn{
    display:inline-block;
    min-width:140px;
    text-align:center;
    padding:11px 22px;
    background:linear-gradient(
        90deg,
        #250606,
        #591010
    );
    color:#fff;
    font-size:14px;
    text-decoration:none;
    transition:.3s ease;
}

.odai_btn:hover{
    opacity:.92;
}

/* =========================================================
STUDIO CARD
========================================================= */

.odai_studio_card{
    position:relative;
    overflow:hidden;
    border:1px solid #d8d8d8;
    min-height:100%;
}

.odai_studio_card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.odai_studio_overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.92),
        rgba(0,0,0,.25)
    );

    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    text-align:center;

    padding:50px 20px 28px;
}

.odai_studio_content{
    margin-top:20px;
}

.odai_studio_overlay h2{
    margin:0;
    color:#fff;
    font-family:Georgia, serif;
    font-size:52px;
    line-height:1.1;
    font-weight:400;
    text-transform:uppercase;
}

.odai_studio_overlay p{
    margin-top:18px;
    color:#fff;
    font-size:17px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.odai_btn_studio{
    display:inline-block;
    min-width:180px;
    padding:14px 28px;
    background:linear-gradient(
        90deg,
        #7d1818,
        #b52b2b
    );
    color:#fff;
    text-decoration:none;
    font-size:16px;
    transition:.3s ease;
}

.odai_btn_studio:hover{
    opacity:.90;
}

.odai_btn_studio span{
    margin-left:8px;
}

/* =========================================================
MORE ARTICLES
========================================================= */

.odai_more_articles{
    margin:18px 0 50px;
    text-align:center;
}

.odai_more_articles a{
    text-decoration:none;
    color:#222;
    font-size:22px;
    font-family:Georgia, serif;
    transition:.3s;
}

.odai_more_articles a:hover{
    color:#8b1c24;
}

.odai_more_articles span{
    margin-left:8px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .odai_grid_section{
        grid-template-columns:1fr;
    }

    .odai_grid_cards{
        grid-template-columns:repeat(3,1fr);
    }

    .odai_studio_card{
        min-height:450px;
    }
}

@media(max-width:900px){

    .odai_grid_cards{
        grid-template-columns:1fr;
    }

    .odai_card_top{
        height:260px;
    }

    .odai_studio_card{
        min-height:500px;
    }

    .odai_studio_overlay h2{
        font-size:38px;
    }

    .odai_studio_overlay p{
        font-size:15px;
    }
}
/* =========================================================
CATEGORIES PREMIUM
========================================================= */

.odai_category_block{
    margin:70px 0;
}

.odai_category_header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    padding-bottom:12px;
    border-bottom:2px solid #e8e8e8;
}

.odai_category_header h2{
    margin:0;
    font-family:Georgia, serif;
    font-size:34px;
    font-weight:400;
    text-transform:uppercase;
    color:#222;
}

.odai_category_header a{
    color:#7d1818;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
}

.odai_category_grid{
    display:grid;
    grid-template-columns:1.35fr 1fr;
    gap:25px;
}

/* ==========================================
ARTICLE PRINCIPAL
========================================== */

.odai_featured_article{
    background:#fff;
    border:1px solid #e3e3e3;
    overflow:hidden;
    transition:.3s;
}

.odai_featured_article:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.odai_featured_article img{
    width:100%;
    height:360px;
    object-fit:cover;
    display:block;
}

.odai_featured_content{
    padding:25px;
}

.odai_featured_content h3{
    margin:0 0 15px;
    font-size:30px;
    line-height:1.25;
    color:#222;
    font-family:Georgia, serif;
}

.odai_featured_content p{
    margin:0;
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* ==========================================
LISTE DES ARTICLES
========================================== */

.odai_articles_list{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
}

.odai_small_article{
    border:1px solid #e5e5e5;
    background:#fff;
    transition:.3s;
}

.odai_small_article:hover{
    transform:translateX(4px);
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.odai_small_article a{
    display:grid;
    grid-template-columns:140px 1fr;
    gap:15px;
    align-items:center;
    text-decoration:none;
    color:inherit;
}

.odai_small_article_image{
    height:100px;
    overflow:hidden;
}

.odai_small_article_image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.odai_small_article:hover img{
    transform:scale(1.05);
}

.odai_small_article_content{
    padding-right:15px;
}

.odai_small_article_content h4{
    margin:0;
    color:#222;
    font-size:18px;
    line-height:1.5;
    font-weight:500;
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:992px){

    .odai_category_grid{
        grid-template-columns:1fr;
    }

    .odai_featured_article img{
        height:280px;
    }

}

@media(max-width:768px){

    .odai_category_header{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .odai_category_header h2{
        font-size:28px;
    }

    .odai_small_article a{
        grid-template-columns:100px 1fr;
    }

    .odai_small_article_image{
        height:80px;
    }

    .odai_small_article_content h4{
        font-size:15px;
    }

}
/* ==========================================
ODAI STUDIO HOME
========================================== */
/* =========================================================
HOME ODAI STUDIO
========================================================= */

.home_studio{
    max-width:1600px;
    margin:0 auto;
    padding:40px 20px 60px;
}

.home_studio_header{
    text-align:center;
    margin-bottom:35px;
}

.home_studio_title{
    margin:0;
    font-family:Georgia, serif;
    font-size:58px;
    font-weight:400;
    color:#111;
    letter-spacing:2px;
}

.home_studio_gallery{
    width:100%;
}

.home_studio_grid{
    column-count:4;
    column-gap:18px;
}

.home_studio_item{
    display:inline-block;
    width:100%;
    margin:0 0 18px;
    break-inside:avoid;
    -webkit-column-break-inside:avoid;
    text-decoration:none;
}

.home_studio_item_inner{
    position:relative;
    overflow:hidden;
    border-radius:14px;
    background:#111;
}

.home_studio_item img{
    width:100%;
    display:block;
    transition:transform .5s ease;
}

.home_studio_item_overlay{
    position:absolute;
    inset:0;

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

    background:linear-gradient(
        to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,.05)
    );

    opacity:0;
    transition:.3s;
}

.home_studio_zoom_icon{
    width:58px;
    height:58px;
    border-radius:50%;

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);

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

    color:#fff;
    font-size:34px;

    transform:scale(.85);
    transition:.3s;
}

.home_studio_item:hover img{
    transform:scale(1.05);
}

.home_studio_item:hover .home_studio_item_overlay{
    opacity:1;
}

.home_studio_item:hover .home_studio_zoom_icon{
    transform:scale(1);
}

.home_studio_footer{
    text-align:center;
    margin-top:40px;
}

.home_studio_button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:50px;
    padding:0 28px;

    background:#7d1818;
    color:#fff;

    border-radius:40px;
    text-decoration:none;

    transition:.3s;
}

.home_studio_button:hover{
    opacity:.9;
}

/* Responsive */

@media (max-width:1200px){

    .home_studio_grid{
        column-count:3;
    }

}

@media (max-width:768px){

    .home_studio{
        padding:30px 12px 40px;
    }

    .home_studio_title{
        font-size:40px;
    }

    .home_studio_grid{
        column-count:2;
        column-gap:10px;
    }

    .home_studio_item{
        margin-bottom:10px;
    }

}

@media (max-width:480px){

    .home_studio_grid{
        column-count:2;
        column-gap:8px;
    }

    .home_studio_item{
        margin-bottom:8px;
    }

}

/* =========================================================
ODAI CATEGORY CAROUSEL PREMIUM
========================================================= */

.odai_category_section{

    margin:100px 0;

}

.odai_category_header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.odai_category_header h2{

    margin:0;

    font-size:32px;

    font-weight:700;

    letter-spacing:.5px;

}

.odai_category_actions{

    display:flex;

    align-items:center;

    gap:12px;

}

.odai_category_link{

    text-decoration:none;

    color:#7d1818;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

}

.odai_category_track{

    display:flex;

    gap:30px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    -ms-overflow-style:none;

    padding-bottom:10px;

}

.odai_category_track::-webkit-scrollbar{

    display:none;

}

/* =========================================================
CARD
========================================================= */

.odai_category_card{

    flex:0 0 420px;

}

.odai_category_card a{

    display:block;

    text-decoration:none;

    color:inherit;

}

.odai_category_card_image{

    width:100%;

    aspect-ratio:4/5;

    overflow:hidden;

    border-radius:18px;

    background:#f5f5f5;

}

.odai_category_card_image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s ease;

}

.odai_category_card:hover img{

    transform:scale(1.05);

}

.odai_category_card_content{

    padding-top:18px;

}

.odai_category_card_content h3{

    margin:0;

    font-size:24px;

    line-height:1.45;

    font-weight:600;

}

.odai_category_card_content p{

    margin-top:12px;

    color:#777;

    line-height:1.8;

    font-size:15px;

}

/* =========================================================
ARROWS
========================================================= */

.odai_cat_arrow{

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#111;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s ease;

}

.odai_cat_arrow:hover{

    transform:translateY(-2px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

/* =========================================================
TABLET
========================================================= */

@media(max-width:1200px){

    .odai_category_card{

        flex:0 0 360px;

    }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

    .odai_category_header{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;

    }

    .odai_category_actions{

        width:100%;

        justify-content:space-between;

    }

    .odai_category_track{

        gap:16px;

        padding:0 20px;

        scroll-snap-type:x mandatory;

    }

    .odai_category_card{

        flex:0 0 calc(100vw - 60px);

        scroll-snap-align:start;

    }

    .odai_category_card_content h3{

        font-size:20px;

    }

}