
*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  border: none;
  scroll-behavior: smooth;
}

body{
    font-size: 18px;
    letter-spacing: 1px;
    color: #000000;
    position: relative;
}

a{
    cursor: pointer;
    color: #000000;
}

p{
    font-size: 16px;
    line-height: 1.8;
}

img{
    width: 100%;
}


main{
    z-index: 0;
}

.main-visual{
    z-index: -1;
}

.sp-mv{
  display: none;
}

.main-visual img{
    height: 498px;
    object-fit: cover;
}

.production-section{
    background-image: url(/assets/images/top/works_bg.webp);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 99%;
}

.clients{
    width: 100%;
    position: relative;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    overflow: hidden;
    padding: 0.5rem 0 1.5rem 0;
    white-space: nowrap;
    background: linear-gradient(to bottom, #fff 0%, #ffffffd6 80%, #ffffffa3 95%, #ffffff00 100%)
}

.client-logos{
    display: flex;
    gap: 10px;
}

.grad-left{
    position: absolute;
    left: 0;
    width: 50px;
    height: 65px;
    background-color: white;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, #ffffff00 100%);
    z-index: 1;
}

.grad-right{
    position: absolute;
    right: 0;
    width: 50px;
    height: 65px;
    background-color: white;
    background: linear-gradient(to left, #ffffff 0%, #ffffff 50%, #ffffff00 100%);
    z-index: 1;
}

.clients-logo-container{
    list-style: none;
    display: inline-flex;
    animation: 80s slide infinite linear;
    gap: 10px;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 1rem 0;
}

.client-logo{
    width: 100px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 2px 2px 7.6px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.client-logo img {
      width: 90px;
      height: auto;
      object-fit: contain;
    }

    .clients-logo-container .client-logo:nth-last-child(1) img{
      width: 67px;
      height: auto;
    }

    .clients-logo-container .client-logo:nth-last-child(4) img,
    .clients-logo-container .client-logo:nth-last-child(20) img,
    .clients-logo-container .client-logo:nth-last-child(21) img,
    .clients-logo-container .client-logo:nth-last-child(22) img,
    .clients-logo-container .client-logo:nth-last-child(23) img,
    .clients-logo-container .client-logo:nth-last-child(27) img{
      width: 75px;
      height: auto;
    }

    .clients-logo-container .client-logo:nth-last-child(32) img{
      width: 50px;
      height: auto;
    }

    .clients-logo-container .client-logo:nth-last-child(34) img{
      width: 65px;
      height: auto;
    }

    .clients-logos > .clients-logo-container:nth-child(2) {
        display: block;
        display: grid;
    }

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.works-section, 
.service-section-wrapper, 
.about-wrapper, 
.strength-wrapper, 
.news-wrapper, 
.topics-wrapper{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto
}

#new-main .title{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#new-main .title h2{
    font-size: 54px;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
}

#new-main .title p{
    width: 100%;
    font-size: 22px;
    display: flex;
    align-items: center;
    margin-top: -10px;
}

.title-line{
    height: 1px;
    margin-left: 10px;
    width: 50px;
    background-color: #333333;
}

.works-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.works-section{
    display: grid;
    grid-template-columns: 39% 1fr;
    gap: 6%;
    padding: 50px 0 100px 0;
}

.medal-img{
    width: 90%;
    max-width: 880px;
    margin: 0 auto;
    margin-top: 50px;
}

.medal-sp{
    display: none;
}

.works-content .ryumin-title{
    font-size: 32px;
    line-height: 1.5;
    margin-top: 1.5rem;
}

.yellow-title{
    font-size: 48px;
    line-height: 1.5;
    color: #A48935;
}

.view-more-btn, .sp-view-more{
    margin-top: auto;
    background-color: #333333;
    color: #ffffff;
    width: 150px;
    height: 40px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.view-more-btn:hover,
.sp-view-more:hover{
    background-color: #555555;
    transition: all 0.3s ease;
}

.sp-view-more{
    display: none;
}

.works-img{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.work-card{
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    overflow: hidden;
}

.work-card p > br{
    display: none;
}

.work-card img:hover{
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.work-card img:not(:hover){
    transform: scale(1);
    transition: all 0.3s ease;
}

.work-card img{
    object-fit: contain;
    border-radius: 5px 5px 0 0;
}

.work-card p{
    padding: 15px;
    font-size: 12px;
    line-height: 1.3;
}

.service-section, .strength-section{
    /* background-color: #e0e6f0; */
    background-color: #F6F6F6;
    padding: 70px 0;
}

.about-wrapper,
.news-wrapper{
    padding: 70px 0;
}

.topics-wrapper{
    padding-bottom: 15%;
}

.services{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 15px;
}

.service-card{
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
    padding: 15px;
}

.service-section-wrapper .title{
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.service-section-wrapper .title .title-line{
    width: 30px;
}

.service-icon{
    width: 25px;
    object-fit: contain;
    margin-top: 4px;
}

.service-title{
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-title h3{
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    line-height: 1.5;
}

.service-title h3 > br{
        display: none;
       }

.service-drop-line{
    height: 1px;
    width: 100%;
    border-bottom: 1px dotted #000000;
    padding-top: 10px;
}

/* .yellow-line{
    border-bottom: 1px solid #F4A237;
}

.red-line{
    border-bottom: 1px solid #E6312A;
}

.blue-line{
    border-bottom: 1px solid #285EAB;
}

.green-line{
    border-bottom: 1px solid #15903D;
} */

.service-card ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 16px;
    margin-top: 1rem;
}

.service-drop-icon{
    display: none;
    font-size: 20px;
}

.service-card ul li a{
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.service-card ul li a p{
    font-size: 14px;
    line-height: 1.5;
}

.service-card ul li a p:hover{
    text-decoration: underline;
    transition: all 0.3s ease;
}

.service-title > .side-line{
    display: block;
    width: 7px;
    height: 24px;
    margin-top: 4px;
}

.yellow-card .side-line{
    background-color: #F4A237;
}

.yellow-card .service-arrow,
.yellow-card .service-drop-icon{
    color: #F4A237;
    text-decoration: none;
}

.red-card .side-line{
    background-color: #E6312A;
}

.red-card .service-arrow,
.red-card .service-drop-icon{
    color: #E6312A;
    text-decoration: none;
}

.blue-card .side-line{
    background-color: #285EAB;
}

.blue-card .service-arrow,
.blue-card .service-drop-icon{
    color: #285EAB;
    text-decoration: none;
}

.green-card .side-line{
    background-color: #15903D;
}

.green-card .service-arrow,
.green-card .service-drop-icon{
    color: #15903D;
    text-decoration: none;
}


.about-section{
    background-image: url(/assets/images/top/about_bg.webp);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.about-wrapper .title{
    margin-bottom: 35px;
}

.about-content-wrapper{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.about-content{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-content .ryumin-title{
    font-size: 27px;
}

.fifty-years{
    font-size: 60px;
    color: #A48935;
}

.fifty-imgs{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fifty-imgs .view-more-btn{
    margin: 0 auto;
}

.fifty-img-sp{
    display: none;
}

.strength-title{
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.strength-title h2{
    font-size: 40px;
}

.strength-title .title-line{
    width: 60px;
}

.strength-cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.strength-wrapper .strength-card{
    position: relative;
    box-shadow: 4px 4px 13.6px 0 rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    border-radius: 10px;
    padding: 42px 20px;
}

.tri-shape{
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
}

.tri-shape img{
    width: 75%;
    height: auto;
    margin-left: auto;
}

.strength-wrapper .strength-card .card-content{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.strength-wrapper .strength-card .strength-icon{
    width: 80px;
    height: 65px;
    margin: 0 auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.strength-wrapper .strength-card .card-content h3{
    text-align: center;
    font-size: 18px;
}

.strength-wrapper .strength-card .card-content a{
    font-size: 14px;
    margin-top: auto;
}

.strength-wrapper .strength-card .card-content a:hover{
    text-decoration: underline;
    transition: all 0.3s ease;
}

.news-section{
    background-image: url(/assets/images/top/news_bg.webp);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 90%;
}

.top-banners{
    width: 100%;
    max-width: 1000px;
    margin-bottom: 10%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.top-banners img:hover{
    opacity: 0.7;
}

.news-list{
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

.date{
    display: flex;
    gap: 10px;
    align-items: center;
}

.new{
    padding: 0 10px;
    background-color: #c21815;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.5;
}

#hidden-para{
    display: block;
    display: none;
}

.news-item{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #cccccc;
    cursor: pointer;
}

.news-item .date p:nth-child(1){
    width: 94px;
}

.news-txt{
    text-decoration: underline;
}

.news-txt:hover{
    text-decoration: none;
}

.news-item span a,
.news-item span{
    word-break: break-all;
}

.news-list li:nth-last-child(1) > .news-item{
    border-bottom: 0;
}

.news-para{
    padding-bottom: 2rem;
    margin-top: -20px;
    border-bottom: 1px solid #cccccc;
}

.topics-wrapper .title{
    margin-bottom: 60px;
}

.topic-list{
    list-style: none;
    display: flex;
    gap: 28px;
}

.topic-list li a img{
    max-width: 228px;
    object-fit: contain;
}

.topic-list li a img:hover{
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.topic-list li a img:not(:hover){
    transform: scale(1);
    transition: all 0.3s ease;
}

.path-and-chameleon{
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        background-color: #ffffff;
        display: flex;
        margin-top: 130px;
    }

    .path-link-wrapper{
        width: 90%;
        max-width: 600px;

        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .path-link{
        font-size: 14px;
        font-weight: 500;
        list-style: none;
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 7px;
    }

    .path-link > li > a{
        text-decoration: underline;
    }

    .chameleon{
        position: sticky;
        bottom: 0;
        right: 0;
        z-index: 1;
    }

    .chameleon-gif{
        position: absolute;
        bottom: 0;
        right: 0;
        display: flex;
    }

    .chameleon-gif > video{
        max-width: 330px;
        margin-left: auto;
        object-fit: contain;
    }

    /* media section css */
    .media{
        width: 100%;
        padding-bottom: 5%;
    }

    .media-title{
      width: 90%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .media-title .sp-title{
      display: none;
    }

    .media-wrapper{
      width: 90%;
        max-width: 1000px;
        margin: 5% auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .media-list{
        list-style: none;
    }

    .media-item{
        display: grid;
        grid-template-columns: 50px 1fr;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .media-item .date{
        font-weight: bold;
    }

    .media-text{
        border-left: 1px solid #cec3b7;
        padding-left: 1rem;
        line-height: 2;
    }

    .bold-date{
      font-size: 18px;
      font-weight: 600;
    }

    .media-text > p:nth-last-child(1){
      padding-bottom: 1rem;
    }

    #media-main > .news > .news-list{
        padding: 0;
    }

.topic-list {
                display: flex;
                gap: 20px;
                list-style: none;
                padding: 0;
                margin: 0;
            }
            
            .topic-list li {
                flex: 1;
            }
            
            .topic-list img {
                width: 100%;
                height: auto;
                border-radius: 8px;
            }
            
            .slider-container {
                position: relative;
            }
            
            .slider-nav {
                display: none;
            }

            .slider-controls{
                display: none;
            }
    
    .service-drop-icon {
        display: none;
    }
    
    .service-card.active ul {
        max-height: none !important;
    }

@media (min-width: 769px) and (max-width: 840px){
    .pc-mv{
        margin-top: 45px;
    }
}

@media(max-width: 768px) {
    body{
        font-size: 14px;
        min-width: 0;
        line-height: 26px;
      }

      p{
        font-size: 14px;
        line-height: 26px;
      }

      .pc-mv{
        display: none;
      }

      .sp-mv{
        display: block;
        margin-top: 71px;
        height: 240px;
        object-fit: cover;
      }

       .main-visual img{
          height: auto;
          margin-top: 72px;
          object-fit: contain;
       }

       #new-main .title h2{
            font-size: 38px;
        }

        #new-main .title p{
            width: 100%;
            font-size: 14px;
            margin-top: -10px;
        }

        .title-line{
            height: 1px;
            margin-left: 10px;
            width: 35px;
            background-color: #333333;
        }

    .clients-logo-container .client-logo:nth-last-child(1) img,
      .clients-logo-container .client-logo:nth-last-child(11) img,
      .clients-logo-container .client-logo:nth-last-child(10) img,
      .clients-logo-container .client-logo:nth-last-child(10) img {
        width: auto;
        height: 34px;
      }
      .clients-logo-container .client-logo:nth-last-child(2) img {
        width: auto;
        height: 53px;
      }
      .clients-logo-container .client-logo:nth-last-child(3) img {
        width: auto;
        height: 47px;
      }
      .clients-logo-container .client-logo:nth-last-child(4) img,
      .clients-logo-container .client-logo:nth-last-child(36) img {
        width: auto;
        height: 20px;
      }
      .clients-logo-container .client-logo:nth-last-child(5) img,
      .clients-logo-container .client-logo:nth-last-child(7) img,
      .clients-logo-container .client-logo:nth-last-child(8) img,
      .clients-logo-container .client-logo:nth-last-child(9) img,
      .clients-logo-container .client-logo:nth-last-child(10) img,
      .clients-logo-container .client-logo:nth-last-child(13) img,
      .clients-logo-container .client-logo:nth-last-child(15) img,
      .clients-logo-container .client-logo:nth-last-child(16) img,
      .clients-logo-container .client-logo:nth-last-child(26) img,
      .clients-logo-container .client-logo:nth-last-child(29) img{
        width: auto;
        height: 50px;
      }
      .clients-logo-container .client-logo:nth-last-child(6) img {
        width: auto;
        height: 33px;
      }
      .clients-logo-container .client-logo:nth-last-child(12) img {
        width: auto;
        height: 43px;
      }
      .clients-logo-container .client-logo:nth-last-child(14) img {
        width: auto;
        height: 40px;
      }
      .clients-logo-container .client-logo:nth-last-child(17) img {
        width: auto;
        height: 25px;
      }
      .clients-logo-container .client-logo:nth-last-child(18) img,
      .clients-logo-container .client-logo:nth-last-child(19) img,
      .clients-logo-container .client-logo:nth-last-child(23) img,
      .clients-logo-container .client-logo:nth-last-child(27) img,
      .clients-logo-container .client-logo:nth-last-child(33) img {
        width: auto;
        height: 22px;
      }
      .clients-logo-container .client-logo:nth-last-child(20) img {
        width: auto;
        height: 26px;
      }
      .clients-logo-container .client-logo:nth-last-child(21) img {
        width: auto;
        height: 27px;
      }
      .clients-logo-container .client-logo:nth-last-child(22) img {
        width: auto;
        height: 19px;
      }
      .clients-logo-container .client-logo:nth-last-child(24) img {
        width: auto;
        height: 18px;
      }
      .clients-logo-container .client-logo:nth-last-child(25) img {
        width: auto;
        height: 26px;
      }
      .clients-logo-container .client-logo:nth-last-child(28) img {
        width: auto;
        height: 45px;
      }
      .clients-logo-container .client-logo:nth-last-child(30) img,
      .clients-logo-container .client-logo:nth-last-child(31) img,
      .clients-logo-container .client-logo:nth-last-child(32) img {
        width: auto;
        height: 30px;
      }
      .clients-logo-container .client-logo:nth-last-child(34) img {
        width: 80px;
        height: auto;
      }
      .clients-logo-container .client-logo:nth-last-child(35) img {
        width: auto;
        height: 40px;
      }

      .production-section{
        background-image: url(/assets/images/top/works_bg_sp.webp);
      }

      .about-section{
        background-image: url(/assets/images/top/about_bg_sp.webp);
      }

      .news-section{
        background-image: url(/assets/images/top/news_bg_sp.webp);
      }

        .service-section-wrapper .title .title-line{
            width: 20px;
        }

        .strength-title .title-line {
            width: 30px;
        }

        .about-wrapper, .news-wrapper {
            padding: 40px 0;
        }

       .works-section{
            padding: 30px 0 45px 0;
            grid-template-columns: 1fr;
            gap: 40px;
       }

       .works-content .ryumin-title{
            font-size: 26px;
            margin-top: 0;
        }

        .yellow-title{
            font-size: 26px;
            line-height: 1;
        }

       .works-imgs{
            display: flex;
            flex-direction: column;
            align-items: center;
       }

       .work-card{
            border-radius: 3px;
       }

       .work-card p{
            padding: 10px;
            line-height: 1.4;
       }

       .work-card p > br{
            display: block;
        }

       .works-content .view-more-btn{
            display: none;
       }

       .medal-img{
        width: 85%;
        margin-top: 22px;
       }

       .medal-pc{
            display: none;
        }

        .medal-sp{
            display: block;
        }

       .sp-view-more{
            display: block;
            margin: 0 auto;
            margin-top: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
       }

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

       .service-title h3 > br{
        display: block;
       }

       .service-card{
            padding-bottom: 0;
        }

        .service-drop-line{
            display: none;
        }

        .service-card ul {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.4s ease-in-out;
            transform: translateY(-10px);
        }

        .service-card.active ul {
            max-height: 500px;
            opacity: 1;
            transform: translateY(0);
            transition: all 0.4s ease-in-out;
            padding-bottom: 15px;
        }

        .service-drop-icon {
            cursor: pointer;
            user-select: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .service-card.active .service-drop-icon {
            transform: rotate(180deg);
        }

        .service-drop-icon{
            display: block;
            margin-left: auto;
        }

        .about-content-wrapper{
            grid-template-columns: 1fr;
        }

       .fifty-img-pc{
        display: none;
       }

       .fifty-img-sp{
        display: block;
       }

       .strength-cards{
        grid-template-columns: 1fr;
       }

       .works-content .ryumin-title,
       .about-content .ryumin-title{
        line-height: 38px;
       }

       .about-content .ryumin-title{
            font-size: 22px;
            line-height: 30px;
            margin-bottom: -15px;
       }

       .fifty-years{
        font-size: 45px;
       }

       .strength-title h2{
            font-size: 29px;
       }

       .top-banners{
        grid-template-columns: 1fr;
       }

       .news-list{
        padding: 1rem 0;
       }

       .news-item{
        flex-direction: column;
        gap: 5px;
       }

       .date p:nth-child(1){
        font-size: 16px;
       }

       .news-para{
        padding-bottom: 1rem;
       }

       .topics-wrapper{
                width: 100%;
            }

            .topics-wrapper .title{
                width: 90%;
                margin: 0 auto;
                margin-bottom: 40px;
            }

            .slider-container {
                position: relative;
                width: 100%;
                padding: 0;
                overflow: hidden;
            }

            .slider-wrapper {
                position: relative;
                width: 100%;
                overflow: hidden;
            }

            .topic-list {
                display: flex;
                list-style: none;
                padding: 0;
                margin: 0;
                transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                will-change: transform;
                align-items: center;
                height: 100%;
                gap: 0;
            }

            .topic-list li {
                flex: 0 0 70%;
                padding: 0 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .topic-list li a {
                display: block;
                width: 100%;
                transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .topic-list li a img {
                max-width: 100%;
                height: auto;
                display: block;
                border-radius: 8px;
                box-shadow: 0 2px 15px rgba(0,0,0,0.1);
                object-fit: contain;
                max-height: 100%;
            }

            .topic-list li:not(.active) {
                opacity: 0.5;
            }

            .topic-list li.active {
                opacity: 1;
            }


            .topic-list li:not(.active) a {
                transform: scale(0.9);
            }

            .topic-list li.active a {
                transform: scale(1);
            }

            .slider-controls {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 100%;
                display: flex;
                justify-content: space-between;
                padding: 0 10px;
                pointer-events: none;
                z-index: 1;
            }

            .slider-btn {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.95);
                border: none;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                pointer-events: all;
                box-shadow: 0 2px 10px rgba(0,0,0,0.2);
                transition: all 0.3s ease;
                font-size: 20px;
                color: #333;
                font-weight: bold;
            }

            .slider-btn:active {
                transform: scale(0.95);
                background: rgba(255, 255, 255, 1);
            }

            .topic-list {
                cursor: grab;
            }

            .topic-list.dragging {
                cursor: grabbing;
                transition: none;
            }

       .chameleon{
        display: none;
       }

       .sp-footer{
        margin-top: 0;
       }

        .media-wrapper{
          grid-template-columns: 1fr;
          gap: 0;
         }

         .media-item{
            gap: 0;
         }

        .bold-date{
            font-size: 14px;
        }

}