* {
   margin: 0;
   padding: 0;
}
*,
*::before,
*::after {
   box-sizing: border-box;
}
a {
   /* color: #333; */
   text-decoration: none;
   outline: none;
   cursor: pointer;
}
ul,
li {
   list-style: none;
   padding: 0;
   margin: 0;
}
body {
   width: 100%;
}

/* 본문 시작 */
/* 레이아웃 */
#whatOffer-wrap {
   font-family: 'Montserrat', sans-serif;
   max-width: 1440px;
   margin: 50px auto;
}

.whatOffer-pageTitle {
   font-size: 3rem;
   display: flex;
   justify-content: flex-start;
   align-items: center;
   color: #333;
   font-weight: 200;
   padding: 0 3%;
   margin-top: 120px;
}

.whatOffer-pageTitle div:last-child {
   font-size: 1.2rem;
   font-weight: 700;
   color: #ababab;
   margin-left: 150px;
}

.whatOffer-list {
   width: 90%;
   margin: 100px auto 0;
}
.whatOffer-list > li {
   margin-bottom: 150px;
}
.whatOffer-list .whatOffer-ttl {
   color: #000;
   font-size: 2rem;
   font-weight: 700;
   margin-bottom: 20px;
}
.whatOffer-list .whatOffer-ttl i {
   margin-right: 15px;
}

.whatOffer-overview {
   display: flex;
   justify-content: flex-start;
   align-items: center;
   background: #f3f6ff;
   padding: 20px;
}
.whatOffer-overview-img {
   margin-right: 50px;
}
.whatOffer-overview-img img {
   width: 50px;
}

.whatOffer-overview-desc {
   font-size: 1.2rem;
   color: #04267c;
   font-weight: 600;
}

/* Sourcing Korean Products */
.sourcingKoreanProducts {
   margin: 50px 0 80px 0;
}
.sourcing-contents {
   width: 85%;
   margin: 0 auto;
}

.sourcingKoreanProducts li {
   display: flex;
   align-items: center;
}
.sourcingKoreanProducts li:first-child {
   border-bottom: 2px solid rgba(119, 119, 119, 0.2);
   padding-bottom: 50px;
}
.sourcingKoreanProducts li:last-child {
   margin-top: 50px;
}
.sourcingKoreanProducts li div:first-child {
   margin-right: 130px;
}

.sourcing-contactUs {
   display: flex;
   align-items: center;
   justify-content: flex-start;
   font-size: 1.5rem;
   color: #04267c;
}
.sourcing-contactUs div:first-child {
   margin-right: 50px;
   font-weight: 500;
}
.sourcing-contactUs i {
   margin-right: 15px;
}
.sourcing-contactUs div:last-child {
   font-weight: 700;
}

.sourcing-contents-desc {
   font-size: 1.2rem;
   line-height: 1.35;
   letter-spacing: 0.5px;
}

/* Purchasing Service */
.purchasing-img {
   display: block;
   width: 350px;
   margin: 40px 0;
}
.purchasing-desc {
   font-size: 1.3rem;
}
.purchasingService {
   width: 85%;
   margin: 0 auto;
}

/* 추가 */
/* Brand List */
.brandListTitle {
   text-align: center;
}
.brandListTitle p:first-child {
   font-size: 2rem;
   font-weight: 700;
   margin-bottom: 20px;
}
.brandListTitle p:last-child {
   font-size: 1.2rem;
   color: #04267c;
   font-weight: 600;
   background: #f3f6ff;
   width: 95%;
   margin: 0 auto;
   padding: 10px 0;
}

/* Filter Buttons */
/* Images Cards */
.subCartegory {
   padding-left: 6.5px;
   width: 100%;
   margin: 10px 0;
   font-weight: 700;
   font-size: 1.25rem;
}
.filterable_cards {
   width: 100%;
   display: flex;
   justify-content: flex-start;
   margin-top: 25px;
   gap: 2.5%;
   flex-wrap: wrap;
}
.brandCard {
   background: #fff;
   padding: 3px;
}
.brandCard a {
   height: 6.24rem;
   display: inline-block;
   position: relative;
   overflow: hidden;
   border-radius: 9px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.brandCard a img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   transition: transform 0.3s ease;
}
.brandCard a:hover img {
   transform: scale(1.1);
   filter: brightness(92%);
}
.card_body {
   padding: 10px 0 25px;
   text-align: center;
}
.card_text {
   font-size: 1.1rem;
   font-weight: 750;
   color: #333;
   background-color: #eee;
   padding: 3.5px 0;
}

/* 수정 */
[role='tablist'] {
   list-style: none;
   margin: 60px 0 70px;
   padding: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 1.5%;
   flex-wrap: wrap;
}

[aria-selected='true'] {
   background: linear-gradient(
      135deg,
      rgba(247, 148, 31, 0.5),
      rgba(255, 111, 97, 0.5)
   );
}
.tabs__panels {
   margin: 0 auto;
   width: 95%;
}
[role='tablist'] a {
   display: block;
   font-family: 'Montserrat', sans-serif;
   width: 9.5rem;
   padding: 15px 0;
   text-align: center;
   color: #000;
   font-size: 1.1rem;
   font-weight: 550;
   border-radius: 15px;
}
[role='tablist'] img {
   width: 3.5rem;
}
[role='tablist'] span {
   display: block;
   font-weight: 450;
   margin-top: 5px;
   font-size: 1rem;
}

/* 반응형 */
@media screen and (max-width: 768px) {
   .sourcingKoreanProducts li {
      flex-direction: column;
   }
   .sourcingKoreanProducts li:last-child {
      flex-direction: column-reverse;
   }
   .sourcingKoreanProducts li div:first-child {
      margin-right: 0;
   }
   .sourcing-contents-desc {
      margin-top: 40px;
   }
}

@media screen and (max-width: 600px) {
   .sourcing-contactUs {
      flex-direction: column;
   }
   .sourcing-contactUs div:first-child {
      margin: 0 0 20px 0;
   }
   /* 브랜드 추가 부분 */
   [role='tablist'] {
      margin: 30px 0;
   }
   [role='tablist'] a {
      width: 6.5rem;
   }
   [role='tablist'] img {
      width: 2.6rem;
   }
   [role='tablist'] span {
      font-size: 0.8rem;
   }
   .brandListTitle p:first-child {
      font-size: 1.5rem;
   }
   .brandListTitle p:last-child {
      font-size: 0.95rem;
      width: 100%;
   }
   .brandCard {
      width: 48%;
   }
   .brandCard a {
      height: 5.24rem;
   }
   .card_text {
      font-size: 0.85rem;
   }
}

@media screen and (max-width: 480px) {
   .whatOffer-pageTitle {
      margin-top: 100px;
   }
   .whatOffer-pageTitle {
      flex-direction: column;
      font-size: 2.2rem;
   }
   .whatOffer-pageTitle div:last-child {
      margin: 20px 0 0 0;
      text-align: center;
      font-size: 1rem;
   }
   .whatOffer-list {
      width: 100%;
   }
   .whatOffer-list .whatOffer-ttl {
      padding-left: 20px;
      font-size: 1.5rem;
   }
   .whatOffer-overview-desc {
      font-size: 1.1rem;
   }
   .whatOffer-overview-img {
      margin-right: 30px;
   }
   .whatOffer-overview-img img {
      width: 40px;
   }
   .purchasing-img {
      width: 18.875rem;
      margin: 40px auto;
   }
}
@media screen and (max-width: 375px) {
   .whatOffer-pageTitle {
      font-size: 2rem;
   }
   .whatOffer-pageTitle div:last-child {
      font-size: 0.9rem;
   }
   .sourcing-contactUs {
      font-size: 1.4rem;
   }
}
