@import url(reset.css);
@import url(nav.css);
@import url(carousel.css);
@import url(about.css);
@import url(release.css);
@import url(catalog.css);
@import url(subscribe.css);
@import url(content.css);
@import url(contact.css);
@import url(dtform.css);

@font-face {
    font-family: 'LINESeedTW';
    src: url('../fonts/LINESeedTW_OTF_Th.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LINESeedTW';
    src: url('../fonts/LINESeedTW_OTF_Rg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LINESeedTW';
    src: url('../fonts/LINESeedTW_OTF_Bd.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LINESeedTW';
    src: url('../fonts/LINESeedTW_OTF_Eb.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


/*========================================================================================================*/
/*== Main                                                                                              ===*/
/*========================================================================================================*/

body {
  font-family: 'Tt Norms Pro', 'LINESeedTW', 'sans-serif';
  min-width: 320px;
  /* 設置最小寬度 */
}



/*========================================================================================================*/
/*== Section                                                                                           ===*/
/*========================================================================================================*/

.sectionTitle {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.sectionTitle h1 {
  margin-right: 16px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
}

.sectionTitle h2 {
  font-size: 1.25rem;
  color: #64748b;
  font-weight: 400;
}

.section-imgFit {
  height: 100%;
  overflow: hidden;
  /* 防止圖片超出邊界 */
  transition: transform 0.3s, box-shadow 0.3s;
  /* 動畫過渡效果 */
  position: relative;
}

.section-textFit {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #ffffff;
  border-radius: 0 0 15px 15px;
  justify-content: space-between;
}

.section-image-container {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  /* 圖片放大的過渡效果 */
}

.section-image-container:hover {
  transform: scale(1.05);
  /* 圖片放大效果 */
}

.section-subtitle-container {
  font-weight: 400;
  line-height: 1.3;
  font-size: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 20px;
  height: 52px;
}

.section-paragraph-container {
  line-height: 1.3;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #6e6e73;
}


.arrow-right {
  background-color: rgba(0, 110, 255, 0.85);
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.26);
  height: 100px;
  left: -50px;
  position: absolute;
  bottom: -50px;
  width: 100px;
  -webkit-transform: rotate(45deg);
}

.arrow-right span {
  color: #f5f5f5;
  font-weight: 400;
  font-size: 1.2rem;
  left: 30px;
  bottom: 75px;
  position: absolute;
}

.arrow-right-article {
  background-color: rgba(0, 110, 255, 0.85);
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.26);
  height: 100px;
  left: -50px;
  position: absolute;
  top: -50px;
  width: 100px;
  -webkit-transform: rotate(-45deg);
}

.arrow-right-article span {
  color: #f5f5f5;
  font-weight: 400;
  font-size: 1.2rem;
  left: 30px;
  top: 78px;
  position: absolute;
}

/*========================================================================================================*/
/*== Latest Issue                                                                                      ===*/
/*========================================================================================================*/

.sectionLatestIssue {
  padding: 80px 0 120px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

/* .sectionLatestIssue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 48, 0.05) 0%, transparent 50%);
  pointer-events: none;
} */

.latestIssue {
  max-width: 1440px;
  padding: 0 80px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 區塊標題 */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* 主要容器 */
.latestIssueContainer {
  display: flex;
  gap: 30px;
  align-items: start;
}

/* 雜誌封面區塊 */
.magazine-cover-block {
  flex: 0 0 35%;
  position: relative;
}

.content-block {
  /* flex: 1; */
}

.magazine-cover-wrapper {
  position: relative;
  perspective: 1000px;
}

.magazine-cover-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 20px;
  filter: blur(25px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.magazine-cover-wrapper:hover .magazine-cover-glow {
  opacity: 1;
}

.magazine-cover-block .magazine-cover-imgFit {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 30px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: white;
  padding: 10px;
}

.magazine-cover-block .magazine-cover-imgFit img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.magazine-cover-reflection {
  position: absolute;
  bottom: -50%;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 60%);
  transform: rotateX(180deg);
  opacity: 0.6;
  pointer-events: none;
}

.magazine-issue-meta {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.magazine-issue-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6366f1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.magazine-issue-date {
  font-size: 1.25rem;
  color: #64748b;
  font-weight: 400;
  padding: 0 10px;
}

/* 內容區塊 */
.content-block {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* 標籤頁導航 */
.tabs-container {
  position: relative;
  margin-bottom: 30px;
}

.tabs-nav-modern {
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 6px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tab-button-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  color: #64748b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tab-button-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.tab-button-modern.active {
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.tab-button-modern.active::before {
  opacity: 1;
}

.tab-button-modern i,
.tab-button-modern span {
  position: relative;
  z-index: 1;
}

.tab-button-modern:not(.active):hover {
  color: #475569;
  background: rgba(255, 255, 255, 0.5);
}

/* 標籤內容 */
.tabs-content {
  flex: 1;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 內容卡片 */
.tab-content-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* .content-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
} */

.tab-content-text {
  color: #374151;
  line-height: 1.7;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  margin-bottom: 30px;
}

/* 統計數字 */
.tab-content-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 400;
}

/* 目錄列表 */
.tab-catalog-list {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.tab-catalog-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tab-catalog-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  color: #374151;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  position: relative;
  padding-left: 20px;
  transition: all 0.2s ease;
}

.tab-catalog-list li:last-child {
  border-bottom: none;
}

.tab-catalog-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
}

.tab-catalog-list li:hover {
  color: #1e293b;
  /* padding-left: 24px; */
}


.tab-catalog-list .sub-tab-catalog-list {
  padding-left: 40px;
  position: relative;
  color: #5f6f8a;
}

/* 可選：為子項目添加縮排標記 */
.tab-catalog-list .sub-tab-catalog-list::before {
  content: "▸";
  position: absolute;
  left: 16px;
  color: #ff5959;
}

/* CTA 按鈕 */
.cta-section {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}

.cta-button-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.6s;
}

.cta-button-modern:hover::before {
  left: 100%;
}

.cta-button-modern:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

/* .cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: transform 0.3s ease;
} */

/* .cta-button-modern:hover .cta-arrow {
  transform: translateX(4px);
} */



/*========================================================================================================*/
/*== Lightbox                                                                                          ===*/
/*========================================================================================================*/

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  font-size: 64px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.lightbox-close:hover {
  opacity: 0.7;
}


/*========================================================================================================*/
/*== Feature                                                                                           ===*/
/*========================================================================================================*/

.sectionFeature {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #f5f6f6;
}

.feature {
  padding-left: 80px;
  padding-right: 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.feature ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 48px;
}

.feature ul li {
  width: 31%;
  border-radius: 15px 15px;
  overflow: hidden;
  box-shadow: 5px 1px 10px rgb(131, 131, 131, 0.2);
  display: flex;
  flex-direction: column;
}

/*========================================================================================================*/
/*== Special                                                                                           ===*/
/*========================================================================================================*/

.sectionSpecial {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #fff;
}

.special {
  padding-left: 80px;
  padding-right: 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.special ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 48px;
}

.special ul li {
  width: 48%;
  border-radius: 15px 15px;
  overflow: hidden;
  box-shadow: 5px 1px 10px rgb(131, 131, 131, 0.2);
  display: flex;
  flex-direction: column;
}

/*========================================================================================================*/
/*== Cover Story                                                                                       ===*/
/*========================================================================================================*/

.sectionCoverStory {
  padding-top: 0px;
  padding-bottom: 0px;
}

/* .cover {
  background: url(../images/cover_story/cover_story_077.jpg)center center no-repeat;
  background-attachment: fixed;
  background-size: cover;
} */

.cover a {
  text-decoration: none;
}

.cover .coverStoryOpacity {
  background-color: #ffffff2a;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cover .coverStoryBar {
  background-image: linear-gradient(180deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.01));
}

.cover .coverStoryText {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 80px 60px 80px;
}

.cover .coverStoryTitle {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.cover .coverStoryTitle h1 {
  margin-right: 16px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
}

.cover .coverStoryTitle h2 {
  font-size: 1.25rem;
  color: #64748b;
  font-weight: 400;
}

.cover .coverStoryText p {
  font-weight: 400;
  font-size: 1.6rem;
  color: #ffffff;
  text-shadow: 2px 2px 10px #000000;
  padding-top: 10px;
}


/*========================================================================================================*/
/*== Digital                                                                                           ===*/
/*========================================================================================================*/

.sectionDigital {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #f5f6f6;
}

.digital {
  padding-left: 80px;
  padding-right: 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.digital ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 48px;
}

.digital ul li {
  width: 31%;
  border-radius: 15px 15px;
  overflow: hidden;
  box-shadow: 5px 1px 10px rgb(131, 131, 131, 0.2);
  display: flex;
  flex-direction: column;
}

/*========================================================================================================*/
/*== Design                                                                                            ===*/
/*========================================================================================================*/

.sectionDesign {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #ffffff;
}

.design {
  padding-left: 80px;
  padding-right: 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.design ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 48px;
}

.design ul li {
  width: 48%;
  border-radius: 15px 15px;
  overflow: hidden;
  box-shadow: 5px 1px 10px rgb(131, 131, 131, 0.2);
  display: flex;
  flex-direction: column;
}


/*========================================================================================================*/
/*== Release Issue                                                                                     ===*/
/*========================================================================================================*/

.sectionReleaseIssue {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  background-image: linear-gradient(0deg, #ace5ff, rgb(255, 255, 255));
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.releaseIssueTitle {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
}

.owl-carousel {
  margin-top: 48px;
}

.owl-theme .item {
  background: #ffffff;
  padding: 1rem;
  border-radius: 15px;
}

.owl-carousel .item img {
  box-shadow: 5px 3px 9px rgb(131, 131, 131, 0.3);
}

.releaseIssueMore {
  align-self: flex-end;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 400;
}

.releaseIssueMore a {
  color: #fff;
}

/*========================================================================================================*/
/*== Footer                                                                                            ===*/
/*========================================================================================================*/


footer {
  display: flex;
  flex-direction: column;
}

footer .footerTop {
  display: flex;
  justify-content: space-between;
  padding: 50px 80px;
  background-color: #3d3c41;
}

footer .footerTopLeft {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer .footerTopLeft a {
  color: white;
  text-decoration: none;
  font-size: 1em;
  opacity: 0.7;
  transition: 0.5s;
}

footer .footerTopLeft a:hover {
  opacity: 1;
}

footer .footerTopRight {
  display: flex;
  flex-direction: column;
  align-items: end;
}

footer .footerTopRight .facebookIcons {
  margin-bottom: 30px;
}

footer .footerTopRight .facebookIcons a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  text-decoration: none;
  background-color: white;
  border-radius: 50%;
  color: rgb(0, 0, 0);
}

footer .footerTopRight .facebookIcons a:hover {
  background-color: #1877f2;
  color: #ffffff;
  transition: 0.5s;
}

footer .footerBottom {
  background-color: #323136;
  padding: 20px;
  text-align: center;
}

footer .footerBottom p {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-family: 'Roboto', 'sans-serif';
}

footer .footerBottom span {
  padding: 0 4px;
}

/*========================================================================================================*/
/*== Back To Top Button                                                                                ===*/
/*========================================================================================================*/

#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 199;
  border: none;
  outline: none;
  background-color: rgba(0, 84, 240, 0.3);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}

#backToTopBtn:hover {
  background-color: rgba(0, 29, 82, 0.3);
}



/*========================================================================================================*/
/*== RWD Break Point                                                                                   ===*/
/*========================================================================================================*/

@media (max-width: 1100px) {
  .carousel {
    padding-top: 80px;
  }
}


@media (max-width: 960px) {

  /*====== lastIssue ======*/
  .magazine-issue-meta {
    flex-direction: column;
  }

  .latestIssueContainer {
    flex-direction: column;
  }

  .magazine-cover-block {
    flex: none;
  }

  .latestIssueTitle {
    flex-direction: column;
    align-items: center;
  }

  .latestIssueTitle h1 {
    padding-right: 0px;
  }

  .latestIssueWrap {
    width: 100%;
  }

  /*====== feature ======*/
  .sectionFeature .feature ul li {
    width: 48%;
  }

  .sectionFeature .feature ul li:nth-child(1) {
    width: 100%;
    margin-bottom: 30px;
  }

  /*====== Special ======*/
  .sectionSpecial .special ul {
    flex-direction: column;
  }

  .sectionSpecial .special ul li {
    width: 100%;
  }

  .sectionSpecial .special ul li:nth-child(1) {
    margin-bottom: 30px;
  }

  /*====== Digital ======*/
  .sectionDigital .digital ul li {
    width: 48%;
  }

  .sectionDigital .digital ul li:nth-child(1) {
    width: 100%;
    margin-bottom: 30px;
  }

  /*====== Design ======*/
  .sectionDesign .design ul {
    flex-direction: column;
  }

  .sectionDesign .design ul li {
    width: 100%;
  }

  .sectionDesign .design ul li:nth-child(1) {
    margin-bottom: 30px;
  }

  /*====== Footer ======*/
  footer .footerTop {
    padding: 50px 40px;
  }

}

@media (max-width: 768px) {
  .latestIssue {
    padding: 0 20px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .latestIssueContainer {
    flex-direction: column;
    gap: 40px;
  }

  .magazine-cover-block {
    flex: none;
  }

  .content-stats {
    grid-template-columns: 1fr;
  }

  .tabs-nav-modern {
    flex-direction: column;
    gap: 8px;
  }

  .tab-button-modern {
    justify-content: flex-start;
  }
}

@media (max-width: 690px) {

  /*====== Header ======*/
  header .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px 2px rgba(0, 0, 0, 0.5);
    transition: .3s ease-out;
  }

  header .menu ul {
    flex-direction: column;
    justify-content: space-around;
  }

  header .menu ul li ul {
    position: relative;
  }

  header .menu ul li a {
    display: block;
    margin: auto 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  header .menuIcon {
    display: flex;
  }

  header .navigationBar {
    padding: 0 20px 0 20px;
  }

  /*====== Feature ======*/
  .sectionFeature .feature ul li {
    width: 100%;
  }

  .sectionFeature .feature ul li:nth-child(2) {
    margin-bottom: 30px;
  }

  /*====== Digital ======*/
  .sectionDigital .digital ul li {
    width: 100%;
  }

  .sectionDigital .digital ul li:nth-child(2) {
    margin-bottom: 30px;
  }

  /*====== lastIssue ======*/
  .latestIssueContainer .imgFit {
    width: 100%;
  }
}



@media (max-width: 520px) {
  .latestIssue {
    padding-left: 40px;
    padding-right: 40px;
  }

  .feature {
    padding-left: 40px;
    padding-right: 40px;
  }

  .special {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cover .coverStoryText {
    padding-left: 40px;
    padding-right: 40px;
  }

  .digital {
    padding-left: 40px;
    padding-right: 40px;
  }

  .design {
    padding-left: 40px;
    padding-right: 40px;
  }

}


@media (max-width: 450px) {
  footer .footerTop {
    flex-direction: column;
    align-items: center;
  }

  footer .footerTopLeft {
    align-items: center;
    height: 120px;
    justify-content: space-around;
  }

  footer .footerTopRight {
    align-items: center;
  }

  footer .footerTopRight .facebookIcons {
    margin-top: 30px;
  }

  footer .footerBottom p span {
    display: flex;
    justify-content: center;
  }

}

@media (max-width: 350px) {
  .latestIssueTitle h1 {
    font-size: 1.7rem;
  }

}