 .section-media-experts {
     padding: 4rem 0rem;
 }

 .section-media-experts>div {
     display: flex;
     flex-direction: column;
     gap: 2rem;
 }

 .section-media-experts__title {
     color: #393333;
     font-family: 'RadiateSans';
     font-size: 2.5rem;
     font-weight: 800;
     text-align: center;
     text-transform: uppercase;
 }

 .section-media-experts__grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     grid-template-rows: repeat(2, 1fr);
 }

 .section-media-experts__grid picture {
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 1.5rem 2.5rem;
 }

 .section-media-experts__grid picture:hover {
     background: #ffc24b;
     cursor: pointer;
 }

 .section-media-experts__grid picture img {
     width: 100%;
 }

 .section-media-experts__description {
     font-family: 'TTFirs';
     font-weight: 800;
     color: #393333;
     font-size: 1.5rem;
     text-align: center;
     margin: 0;
 }

 @media screen and (max-width: 991px) {
     .section-media-experts__grid {
         grid-template-columns: repeat(2, 1fr);
         grid-template-rows: repeat(4, 1fr);
     }
 }

 @media screen and (max-width: 575px) {
     .section-media-experts__title {
         font-size: 2rem;
     }

     .section-media-experts__grid picture {
         padding: 0.75rem;
     }

     .section-media-experts__description {
         font-size: 1rem;
     }
 }