@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  border: none;
  background: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

body {
  margin-top: 125px;
}

@media (max-width: 770px) {
  body {
    margin-top: 100px;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 16px;
}

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

.post-views {
  display: none !important;
}

.loading {
  color: #0066FF;
  font-family: "Jost", sans-serif;
}

.no-articles {
  color: #0066FF;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

.search-result-count {
  color: #0066FF;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  margin: 32px 0;
}

.no-results {
  color: #0066FF;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  margin: 32px 0;
}

.error {
  color: #FF0000;
  font-family: "Roboto", sans-serif;
}

.result-divider {
  height: 1px;
  background-color: #0066FF;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 72px 16px;
  }
  .search-result-count {
    font-size: 14px;
    margin: 16px 0;
  }
  .no-results {
    font-size: 14px;
    margin: 16px 0;
    text-align: center;
  }
  .search-result-count {
    margin: 8px 0;
    text-align: center;
  }
}
.view-more-btn {
  padding: 30px 60px;
  margin: 100px auto 0;
  border: 1px solid #0066FF;
  border-radius: 100px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #0066FF;
  font-size: 24px;
}
.view-more-btn:hover {
  background: #F0F6FF;
}

@media (max-width: 768px) {
  .view-more-btn {
    margin-top: 60px;
  }
}
/* ========================================
 * Header Base Styles
 * ======================================== */
.header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 24px 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-sizing: border-box;
}

.scroll-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  background-color: #0066ff;
  transition: width 0.1s ease-out;
  z-index: 1001;
  width: 0;
}

/*.header-container {*/
/*  max-width: 1440px;*/
/*  margin: 0 auto;*/
/*}*/

.header-contact {
  font-size: 11px;
  color: #0066FF;
  font-weight: 600;
  margin-bottom: 22px;
  padding: 8px 27px;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid #0066FF;
}
.header-contact:hover {
  background: #F0F6FF;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-right {
  text-align: right;
}

.logo-desktop {
  display: block;
}

.logo-mobile {
  display: none;
}

.header-nav-desktop {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 46px;
}

.nav-link {
  font-size: 1.1rem;
  font-weight: 400;
  color: #212121;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  display: inline-block;
  transform-origin: center bottom;
}
.nav-link.flex {
  display: flex;
  align-items: center;
}
.nav-link .underarrow {
  display: inline-block;
  vertical-align: middle;
  color: #212121;
  line-height: 1;
  width: 6px;
  height: 6px;
  border: 0.1em solid currentColor;
  margin-right: 2px;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
.nav-link .external-link-icon {
  width: 12px;
  height: 12px;
  color: #212121;
  display: block;
  margin-left: 4px;
}
.nav-link:hover {
  color: #0066FF;
  animation: jaggedStretch 0.4s forwards;
}
.nav-link:hover .underarrow {
  color: #0066FF;
}
.nav-link:hover .external-link-icon {
  color: #0066FF;
}
.nav-link:hover.flex:hover {
  color: inherit;
}

.header-contact-desktop {
  display: inline-block;
}

.sub-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  background-color: #FCFCFC;
  border-bottom: 1px solid #F5F5F5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  z-index: 100;
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sub-nav-container {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.sub-nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #0066FF;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.sub-nav-link:hover {
  color: #2563eb;
}

.hamburger {
  background-color: #FCFCFC;
  color: #0066FF;
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
}

.hamburger-line {
  width: 12px;
  height: 1px;
  background-color: #0066FF;
  transition: all 0.3s ease;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0066FF;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  animation: slideInFromTop 0.3s ease-out;
}
.mobile-menu-overlay.closing {
  animation: slideOutToBottom 0.2s ease-in forwards;
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideOutToBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0.8;
  }
}
.mobile-menu-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.mobile-menu-header .logo a {
  color: #ffffff;
}

.close-button {
  background-color: #FCFCFC;
  border: none;
  color: #0066FF;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  z-index: 10001;
  position: relative;
}
.close-button:hover {
  background-color: #f3f4f6;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.mobile-nav .mobile-nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #ffffff;
}
.mobile-nav .mobile-nav-item .mobile-nav-link {
  font-size: 36px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #ffffff;
  text-decoration: none;
}
.mobile-nav .mobile-nav-item .mobile-nav-icon {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
}

.mobile-sub-nav {
  display: flex;
  text-align: center;
  flex-direction: column;
  background-color: transparent;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mobile-sub-nav .mobile-sub-nav-link {
  font-size: 1rem 1.5rem;
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: opacity 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-sub-nav .mobile-sub-nav-link:hover {
  opacity: 0.8;
}

.mobile-contact-button {
  display: block;
  background-color: #ffffff;
  color: #0066ff;
  text-decoration: none;
  padding: 30px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease;
  margin-top: 48px;
  max-width: 270px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.mobile-contact-button:hover {
  background-color: #F0F6FF;
}

@media (max-width: 1024px) {
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: block;
  }
  .header-container {
    flex-wrap: wrap;
  }
  .header-left {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 24px;
  }
  .header-container {
    padding: 0;
  }
  .header-contact-desktop {
    display: none;
  }
  .header-nav-desktop {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .sub-nav {
    display: none !important;
  }
}
@keyframes jaggedStretch {
  0% {
    transform: scaleY(1);
  }
  10% {
    transform: scaleY(1.11);
  }
  50% {
    transform: scaleY(1.12);
  }
  55% {
    transform: scaleY(0.95);
  }
  60% {
    transform: scaleY(1.11);
  }
  70% {
    transform: scaleY(1.15);
  }
  100% {
    transform: scaleY(1.16);
  }
}
.mb16 {
  margin-bottom: 16px;
}

.footer {
  background: #000000;
  color: #ffffff;
  padding: 64px 0 32px;
}

.footerContainer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.footerNav {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 48px;
}

.footerTagline {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  font-family: "Jost", sans-serif;
}

.footerNavColumns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  row-gap: 48px;
}

.footerNavColumn {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footerNavTitle {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Jost", sans-serif;
}

.footerNavTitleButton {
  display: none;
  width: 100%;
  text-align: left;
  padding: 16px 0;
  border: none;
  position: relative;
  background-color: #000000;
}

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

.footerNavBorderedButton {
  font-weight: bold;
  color: #ffffff;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 1px;
  display: block;
}
.footerNavBorderedButton:hover {
  color: #999999;
}

.footerNavTitleDesktop {
  display: block;
}
.footerNavTitleDesktop .footerNavTitle {
  border-bottom: 1px solid #ffffff;
  padding: 2px 0;
}
.footerNavTitleDesktop .footerBrandSubtitle {
  border-bottom: 1px solid #ffffff;
  padding: 2px 0;
}

.footerAccordionIcon {
  position: absolute;
  right: 0;
  font-size: 24px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.footerNavList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerNavList li a {
  font-size: 13px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #ffffff;
  transition: color 0.2s ease;
}

.footerNavList li a:hover {
  color: #999999;
}

.footerNavSubtitle {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 12px;
}

.footerNavSubsection {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footerNavSubtitleButton {
  display: none;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  border: none;
  background-color: #000000;
  position: relative;
}

.footerNavSubtitleButton .footerNavSubtitle {
  margin: 0;
}

.footerNavSubtitleDesktop {
  display: block;
}

.footerNavList {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footerBrandSection:last-child {
  margin-bottom: 0;
}

.footerBrandSubtitle {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: "Jost", sans-serif;
}

.footerBrandList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerBrandList li a:hover {
  color: #ffffff;
}

.footerDivider {
  height: 1px;
  background: #ffffff;
  margin: 48px 0;
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 32px;
}

.footerBottomLeft {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footerCompany {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footerCompanyName {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  margin-bottom: 40px;
}

.footerAddress {
  font-size: 13px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #ffffff;
}

.footerSocial {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footerSocial a {
  color: #ffffff;
  transition: color 0.2s ease;
  font-family: "Jost", sans-serif;
}

.footerSocial a:hover {
  color: #ffffff;
}

.footerSocialDivider {
  color: #ffffff;
}

.footerBottomRight {
  display: flex;
  align-items: flex-start;
}

.footerLegalList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerLegalList li a {
  font-size: 14px;
  color: #ffffff;
  transition: color 0.2s ease;
}

.footerLegalList li a:hover {
  color: #999999;
}

.footerCopyright {
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  padding-top: 32px;
  border-top: 1px solid #333333;
}

@media (max-width: 800px) {
  .mb16 {
    margin-bottom: 0;
  }
  .footer {
    padding: 48px 0 24px;
  }
  .footerNavLeft {
    margin-bottom: 32px;
  }
  .footerNav {
    flex-direction: column;
    gap: 0;
  }
  .footerNavColumns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footerNavColumn {
    gap: 0;
  }
  .footerBrandSections {
    flex-direction: column;
  }
  .footerBrandCTAs {
    margin-top: 16px;
    gap: 32px;
  }
  .footerNavTitleButton {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footerNavTitleDesktop {
    display: none;
  }
  .footerBrandSubtitle {
    margin-bottom: 0;
  }
  .footerNavSubtitleButton {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footerNavSubtitleDesktop {
    display: none;
  }
  .footerNavList,
  .footerNavSection {
    display: none;
  }
  .footerNavList.active,
  .footerNavSection.active {
    display: flex;
    flex-direction: column;
  }
  .footerBrandSection {
    margin-bottom: 0;
  }
  .footerBottom {
    flex-direction: column;
    gap: 32px;
  }
  .footerLegalList {
    gap: 16px;
  }
  .footerSocial {
    font-size: 13px;
  }
  .footerNavTitle {
    margin-bottom: 0;
  }
  .footerTagline {
    margin-bottom: 8px;
  }
}
@media (max-width: 640px) {
  .footerNavTitle {
    margin-bottom: 0;
  }
  .footerTagline {
    font-size: 14px;
  }
  .footerCompanyName {
    font-size: 18px;
  }
  .footerAddress {
    font-size: 13px;
  }
}
.main-title {
  margin-bottom: 60px;
}
.main-title .title {
  font-size: 60px;
  font-weight: 400 !important;
  line-height: 1;
  color: #0066FF;
  margin: 0;
  margin-bottom: 2px;
  font-family: "Jost", sans-serif;
}
.main-title .subtitle {
  font-size: 18px;
  font-family: "Lato", sans-serif;
  color: #0066FF;
  margin: 0;
  margin-bottom: 24px;
}
.main-title .divider {
  height: 1px;
  background-color: #0066FF;
}

.contact .container {
  padding-bottom: 120px;
}

.contact-description {
  text-align: center;
  margin-bottom: 64px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.main-cta-wrapper {
  position: relative;
}

.free-badge {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.badge-content {
  position: relative;
  background: #FCFCFC;
  border: 1px solid #0066FF;
  border-radius: 100px;
  padding: 5px 24px;
  text-align: center;
  width: 230px;
  margin: 0 auto;
}

.badge-text {
  color: #0066FF;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.badge-arrow {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid white;
}

.main-cta-button {
  width: 100%;
  background: linear-gradient(90deg, #03B0F2 0%, #0066FF 100%);
  border: none;
  border-radius: 100px;
  padding: 26px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
}

.main-cta-button:hover {
  background: linear-gradient(to right, #00a0e6, #0077e6, #0055e6);
}

.cta-content {
  color: #FCFCFC;
}

.cta-text-small {
  font-weight: 500;
}

.cta-text-emphasis {
  font-size: 20px;
  font-weight: 600;
}

.cta-text-large {
  font-size: 20px;
  font-weight: 600;
}

.contact-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.line-button,
.phone-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 90px;
  border-radius: 100px;
  padding: 20px;
  text-decoration: none;
  transition: background 0.4s ease;
}

.line-button {
  background: linear-gradient(90deg, #05AF68 0%, #009D5B 100%);
}
.line-button:hover {
  background: linear-gradient(90deg, #02a762 0%, #016e41 100%);
}

.phone-button {
  background: white;
  border: 1px solid #0066FF;
}

.phone-button:hover {
  background: #F0F6FF;
}

.button-icon {
  flex-shrink: 0;
}

.button-text {
  text-align: center;
}

.line-button .button-title {
  color: white;
  font-weight: 500;
  font-size: 20px;
  font-family: "Jost", sans-serif;
}

.line-button .button-subtitle {
  color: white;
  font-size: 14px;
}

.phone-label {
  color: #0066FF;
  font-size: 14px;
  margin: 0;
  line-height: 1;
}

.phone-number {
  color: #0066FF;
  font-weight: 500;
  font-size: 30px;
  font-family: "Jost", sans-serif;
  margin-top: 6px;
  line-height: 1;
}

@media (min-width: 768px) {
  .main-title{
      margin-bottom: 45px;
  }
  .contact-description {
    margin-bottom: 80px;
  }
  .badge-content {
    width: 440px;
    padding: 12px 32px;
  }
  .badge-content .badge-text {
    font-size: 20px;
  }
  .badge-content .badge-arrow {
    border-left-width: 16px;
    border-right-width: 16px;
    border-top-width: 16px;
  }
  .main-cta-button {
    padding: 48px 64px;
  }
  .cta-text-small {
    font-size: 24px;
  }
  .cta-text-emphasis {
    font-size: 30px;
  }
  .cta-text-large {
    font-size: 40px;
  }
  .contact-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  .line-button,
  .phone-button {
    padding: 46px 64px;
    height: 160px;
    gap: 32px;
  }
  .line-button .button-title {
    font-size: 24px;
    margin: 0;
  }
  .line-button .button-subtitle {
    font-size: 20px;
    margin: 0;
  }
  .phone-label {
    font-size: 20px;
  }
  .phone-number {
    font-size: 40px;
  }
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.article-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  position: relative;
}
.article-card:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  border-radius: 0;
}

.article-card-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}

.article-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.article-tag {
  display: inline-block;
  padding: 4px 10px;
  background-color: #FCFCFC;
  color: #0066FF;
  border: 1px solid #BED8FF;
  font-size: 12px;
  font-weight: 500;
  border-radius: 0px;
}

.article-date {
  font-size: 14px;
  color: #999999;
  margin-top: 8px;
}

.category-block {
  margin-bottom: 12px;
}
.category-block .nami-icon {
  padding-bottom: 5px;
  background: url(../images/nami.svg) repeat-x bottom left/auto 5px;
  font-size: 11px;
  color: #212121;
  font-weight: 400;
}
.category-block .article-category {
  padding-bottom: 5px;
  padding-bottom-font-size: 11px;
  padding-bottom-color: #212121;
  padding-bottom-font-weight: 400;
}

.article-title {
  color: #212121;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.article {
  /* Pagination */
}
.article .container {
  padding-top: 30px;
}
.article .article-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.article .article-list .article-cards {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid #AECEFD;
}
.article .article-list .article-cards:last-child {
  border-bottom: none;
}
.article .article-list .article-cards.hidden {
  display: none;
}
.article .article-list .article-cards .article-thumbnail {
  flex-shrink: 0;
  width: auto;
  height: 200px;
}
.article .article-list .article-cards .article-thumbnail img {
  width: 350px;
  height: 200px;
object-fit: cover;
  /*display: block;*/
}
.article .article-list .article-cards .article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  width: 100%;
}
.article .article-list .article-cards .article-content .article-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.article .pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 72px;
  margin-bottom: 64px;
  align-items: center;
}
.article .pagination-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #0066FF;
  background-color: #FCFCFC;
  color: #0066FF;
  font-size: 20px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.article .pagination-btn:hover:not(.active) {
  background-color: #0066FF;
  color: #FCFCFC;
}
.article .pagination-btn.active {
  background-color: #0066FF;
  color: #FCFCFC;
  border-color: #0066FF;
}
.article .pagination-dots {
  display: inline-block;
  color: #0066FF;
  font-size: 20px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 45px;
}
.article .topic-button {
  display: block;
  margin: 0 auto;
  margin-top: 64px;
  cursor: pointer;
}

@media (max-width: 800px) {
  .article .article-cards {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .article .article-cards .article-thumbnail {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .article .article-cards .article-content {
    height: auto !important;
  }
}
.topics-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.topic-link {
  display: inline-block;
  padding: 32px 72px;
  border: 1px solid #0066FF;
  border-radius: 9999px;
  color: #0066FF;
  cursor: pointer;
  transition: background-color 0.2s ease;
  background-color: transparent;
}

.topic-link:hover {
  background-color: #F0F6FF;
}

@media (max-width: 600px) {
  .topics-container {
    gap: 0.5rem;
  }
  .topic-link {
    padding: 11px 18px;
    font-size: 0.8rem;
  }
}
.about .content {
  margin-bottom: 64px;
}
.about .content .about-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.about .content .about-explanation {
  margin-top: 32px;
  font-size: 16px;
  line-height: 150%;
  width: 100%;
}
.about .content .about-explanation .about-highlight {
  font-weight: 600;
  color: #0066FF;
}
.about .tab-border {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 2rem;
}
.about .tab-nav {
  display: flex;
  justify-content: space-between;
}
.about .tab-button {
  flex: 1;
  width: 100%;
  padding-bottom: 14px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: #6b7280;
  transition: color 0.2s;
}
.about .tab-button:hover {
  color: #0066FF;
}
.about .tab-button.active {
  color: #0066FF;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 2px solid #0066FF;
}
.about .tab-label {
  font-size: 16px;
}
.about .description-long {
  display: none;
  white-space: nowrap;
}
.about .description-short {
  font-size: 12px;
}
.about .tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #0066FF;
  transition: transform 0.3s ease;
  opacity: 0;
  transition: opacity 0.2s;
}
.tab-button.active .about .tab-indicator {
  opacity: 1;
}
@media (min-width: 768px) {
  .about .tab-label {
    font-size: 20px;
  }
  .about .tab-description {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .about .description-short {
    display: none;
  }
  .about .description-long {
    display: inline;
    font-size: 12px;
  }
}
.about .articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .about .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bg {
  width: 100%;
  height: 300px;
  background: url("../images/topFlatten.png") no-repeat center center;
  background-size: cover;
}

.ranking-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.nav-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #0066ff;
  background-color: #ffffff;
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background-color: #e6f2ff;
}

.nav-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ranking-carousel {
  overflow: hidden;
}

.ranking-track {
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease;
}

.ranking-card {
  flex: 0 0 calc(33% - 16px);
  height: 100%;
  display: flex;
  flex-direction: column !important;
  min-width: 300px;
  margin-bottom: 32px;
  transition: transform 0.3s ease;
  position: relative;
}
.ranking-card:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  border-radius: 0;
}
.ranking-card .article-title {
  flex: 1;
}
.ranking-card .article-card-tags {
  min-height: 32px;
}
.ranking-card .article-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.ranking-card .article-detail .article-date {
  margin: 0;
}
.ranking-card .article-detail .rankingIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/ranking-logo.svg") no-repeat center center;
  width: 46px;
  height: 28px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 0;
  font-family: "Jost", sans-serif;
}

@media (max-width: 768px) {
  .ranking-card {
    flex: 0 0 45%;
  }
  .nav-button {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 500px) {
  .ranking-card {
    flex: 0 0 100%;
  }
}
.topic-card-menu-grid {
  border-top: 1px solid #fff;
  padding-top: 24px;
}

.plus-button.expanded svg path {
  stroke: #fff !important;
}

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

.topic-card {
  position: relative;
  background-color: #F0F6FF;
  border: 1px solid #0066FF;
  border-radius: 50px;
  padding: 32px 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: all 0.01s ease;
  z-index: 1;
}

.topic-card.alternate {
  background-color: #ffffff;
}

.topic-card.expanded {
  background-color: #0066FF;
  color: #ffffff;
  border-radius: 50px 50px 0 0;
  z-index: 100;
}

.topic-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
}

.topic-card-title {
  font-size: 20px;
  color: #0066FF;
  max-width: 205px;
  line-height: 1.3;
}

.topic-card.expanded .topic-card-title {
  color: #ffffff;
}

.topic-card-buttons {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.topic-card-button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #0066FF;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.topic-card-button:hover {
  background-color: #F0F6FF;
}

.topic-card.expanded .topic-card-button {
  border-color: #ffffff;
}

.topic-card-button svg {
  transition: transform 0.3s ease;
}

.topic-card-button.expanded svg {
  transform: rotate(45deg);
}

.plus-button.expanded svg {
  stroke: #fff !important;
}

.topic-card-menu {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  background-color: #0066FF;
  border: none;
  border-radius: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  z-index: 99;
}

.topic-card-menu.open {
  max-height: 400px;
  padding: 24px;
  padding-top: 0;
  border: 1px solid #0066FF;
  border-top: none;
  border-radius: 0 0 50px 50px;
}

.topic-card-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.topic-card-menu-item {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  display: block;
}

.topic-card-menu-item:hover {
  text-decoration: underline;
}

.plus-button {
  border: none !important;
  background: none !important;
}

.line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}

@media (max-width: 1024px) {
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .topic-grid {
    grid-template-columns: 1fr;
  }
  .topic-card {
    border-radius: 100px;
    min-height: 95px;
    padding: 0 24px;
  }
  .topic-card.expanded {
    border-radius: 50px 50px 0 0;
  }
  .topic-card-header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .topic-card-title {
    max-width: 160px;
  }
  .topic-card-buttons {
    margin-top: 0;
  }
  .topic-card-button {
    width: 40px;
    height: 40px;
  }
  .topic-title {
    font-size: 32px;
  }
}
.topic-card-menu {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  background-color: #0066FF;
  border: none;
  border-radius: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease, padding 0.1s ease, border-radius 0.1s, border 0.1s;
  z-index: 99;
}

.search-section {
  padding: 60px 0;
  background-color: #ffffff;
  max-width: 850px;
  margin: 0 auto;
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 40px;
  max-width: 500px;
  width: 100%;
  height: 72px;
  margin-left: auto;
  margin-right: auto;
}

.search-icon {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 28px 60px;
  border: 1px solid #0066ff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  outline: none;
}

.search-input::-moz-placeholder {
  color: #0066ff;
}

.search-input::placeholder {
  color: #0066ff;
}

.search-keywords-title {
  font-size: 18px;
  color: #0066ff;
  text-align: center;
  margin-bottom: 24px;
}

.search-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
  max-height: 200px;
  overflow: hidden;
}

.search-keyword {
  padding: 8px 16px;
  border: 1px solid #BED8FF;
  color: #0066ff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.search-keyword:hover {
  background-color: #e6f2ff;
}

.search-more-button {
  display: none;
  margin: 0 auto 32px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.search-more-button:hover {
  transform: scale(1.1);
}

.search-view-all-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  padding: 16px 48px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-border {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.button-text {
  position: relative;
  color: #0066ff;
  font-size: 16px;
  font-weight: 600;
}

.button-arrow {
  position: relative;
  transition: transform 0.3s ease;
}

.search-view-all-button:hover .button-arrow {
  transform: translateY(4px);
}

.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.search-modal.open {
  display: flex;
}

.search-modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #0066ff;
  border-radius: 30px;
  padding: 48px 24px;
  max-width: 90%;
  width: 600px;
  max-height: 60vh;
  overflow-y: auto;
}

.search-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.search-modal-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 768px) {
  .search-input-wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
  .search-keywords {
    max-height: 200px;
  }
  .search-more-button {
    display: block;
  }
  .search-input {
    font-size: 11px;
  }
}
.video .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.video-schedule {
  max-width: 650px;
  width: 100%;
}

.banner-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 380px;
}

.banner-items img {
  display: block;
}

.first-banner, .second-banner {
  width: 100%;
  height: auto;
  margin-bottom: 56px;
}

.third-banner {
  width: 280px;
  height: auto;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  margin-bottom: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.schedule-list {
  background-color: #0066ff;
  border-radius: 0 0 30px 30px;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.schedule-day {
  width: 45px;
  height: 45px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 20px;
  flex-shrink: 0;
}

.schedule-title {
  flex: 1;
}

.schedule-arrow {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .video .container {
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
  /*.video-schedule {*/
  /*  max-width: 100%;*/
  /*}*/
}
@media (max-width: 640px) {
  .schedule-item {
    padding: 20px;
    gap: 16px;
  }
  .schedule-day {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .schedule-title {
    font-size: 14px;
  }
  .banner-items {
    width: 100%;
  }
  .banner-row {
    width: 100%;
  }
  .banner-row .second-banner {
    margin: 0;
  }
  .third-banner {
    display: none !important;
  }
}
.mainVisual {
  width: 100%;
  background-color: #ffffff;
}

.gridContainer {
  position: relative;
  aspect-ratio: 30/14;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  padding: 0 16px;
  margin-bottom: 18px;
}

.div1 {
  grid-area: 1/1/4/4;
}

.div2 {
  grid-area: 1/4/4/5;
}

.div3 {
  grid-area: 1/5/4/6;
}

.div4 {
  grid-area: 4/1/5/4;
}

.div5 {
  grid-area: 4/4/5/5;
}

.div6 {
  grid-area: 4/5/5/6;
  pointer-events: none;
  background: url(../images/mv1.png) no-repeat left center/cover;
  background-position-x: 10%;
}

.card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0066FF;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}
.card.div5::after, .card.div6::after {
  display: none;
}
.card:hover::after {
  opacity: 0.52;
}

.cardImage {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  margin-left: auto;
  margin-right: 0;
}

.card:hover .cardImage {
  transform: scale(1.08);
}

.card.div5:hover .cardImage,
.card.div6:hover .cardImage {
  transform: none;
}

.cardOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.mv-tag {
  position: absolute;
  top: 15px;
  left: 0;
  display: inline-block;
  background-color: white;
  color: #0066FF;
  padding: 8px 20px;
  border-radius: 0 100px 100px 0;
  border: 1px solid #0066FF;
  border-left: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.1px;
  font-family: "Lato", sans-serif;
  margin-bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
}

.newBadge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: auto;
  z-index: 10;
}

.cardTitleContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cardTitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: white;
  width: 80%;
  z-index: 10;
}

.cardButton {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 10;
}
.cardButton:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.wisdomOverlay {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.8) 0%, rgba(0, 153, 255, 0.6) 100%);
  justify-content: center;
  align-items: center;
}

.wisdomTitle {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: white;
  margin: 0;
}

.tickerContainer {
  padding: 0 16px;
}

.ticker {
  width: 100%;
  background-color: transparent;
  overflow: hidden;
  padding: 12px 6px;
  border-top: 1px solid #0066FF;
  border-bottom: 1px solid #0066FF;
}
.ticker .tickerContent {
  display: flex;
  gap: 72px;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker .tickerContent .tickerItem {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
}
.ticker .tickerContent .tickerItem .tickerIcon {
  flex-shrink: 0;
  width: 20px;
  height: 19px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 1100px) {
  .tickerContainer {
    padding: 0 16px;
  }
  .div1 {
    grid-area: 1/1/4/3;
  }
  .div2 {
    grid-area: 4/1/8/2;
  }
  .div3 {
    grid-area: 4/2/8/3;
  }
  .div4 {
    grid-area: 8/1/10/3;
  }
  .div6 {
    grid-area: 10/1/12/3;
  }
  .div5 {
    display: none;
  }
  .gridContainer {
    padding: 0 16px;
    height: auto;
    aspect-ratio: 3/8;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(11, 1fr);
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }
  .cardTitleContainer-sp {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .cardTitle {
    width: 100%;
  }
  .cardButton {
    width: 38px;
    height: 38px;
    margin-right: 0;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .gridContainer {
    margin-bottom: 18px;
  }
  .mv-tag {
    font-size: 12px;
    padding: 6px 16px;
    top: 12px;
  }
  .div2 .mv-tag {
    max-width: 100px;
  }
  .div3 .mv-tag {
    max-width: 100px;
  }
  .newBadge {
    top: 12px;
    right: 12px;
    width: 48px;
    height: auto;
  }
  .cardOverlay {
    padding: 8px;
  }
  .cardTitle-sp {
    margin-bottom: 8px;
  }
  .cardTitle {
    font-size: 16px;
    font-weight: 600;
    width: 80%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
  }
  .cardButton {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }
  .cardButton svg {
    width: 20px;
    height: 20px;
  }
  .wisdomTitle {
    font-size: 28px;
    line-height: 1.3;
    padding: 0 20px;
  }
  .ticker {
    padding: 16px 0;
  }
  .ticker .tickerContent {
    animation: scroll 20s linear infinite;
    gap: 32px;
  }
  .ticker .tickerContent .tickerItem {
    font-size: 14px;
    gap: 12px;
  }
  .ticker .tickerContent .tickerItem .tickerIcon {
    width: 16px;
    height: 15px;
  }
}
@media (max-width: 768px) {
  .trends .article-card, .about .article-card {
    padding-bottom: 16px;
    border-bottom: 1px solid #AECEFD;
  }
}
.blog-container {
  margin: 0 auto;
  max-width: 1440px;
  padding: 2rem;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.main-content {
  flex: 1;
  min-width: 300px;
  max-width: 1000px;
  padding:0 32px;
}

.blog-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
.blog-header .article-date {
  margin: 0 !important;
  padding: 0 !important;
  height: 1rem;
}
.blog-header .article-category {
  margin: 0;
  padding: 0;
  height: 1rem;
}

.blog-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.3px;
}

.thumbnail-image {
  margin: 3rem 0;
  overflow: hidden;
}
.thumbnail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.share-section {
  text-align: center;
  margin: 3rem 0;
}
.share-section .share-title {
  font-size: 60px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #0066FF;
  line-height: 1;
}
.share-section .share-buttons {
  display: flex;
  justify-content: center;
  gap: 1px;
}
.share-section .share-buttons .share-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.share-section .share-buttons .share-btn:hover {
  background-color: #F0F6FF;
}
.share-section .share-buttons .share-btn .icon {
  width: 42px;
  height: 42px;
}

.about-card {
  border-top: 1px solid #0066FF;
  background-color: #FCFCFC;
  box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.about-card .about-ttl {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #0066FF;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  font-family: "Jost", sans-serif;
}
.about-card .about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.about-card .about-content .avatar {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.about-card .about-content .about-text {
  flex: 1;
}
.about-card .about-content .about-text .about-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.about-card .about-content .about-text .about-label {
  display: block;
  font-size: 1rem;
}
.about-card .about-content .about-text .about-name {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.about-card .about-content .about-text .about-bio {
  font-size: 13px;
}

.sidebar {
  width: 100%;
  max-width: 300px;
}

.banner-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
.banner-section .first-banner,.second-banner{
    margin: 0;
}
.banner-section .banner {
  overflow: hidden;
  background-color: #0066FF;
}
.banner-section .banner img {
  width: 100%;
  height: auto;
  display: block;
}

.trends-section {
  margin: 6rem 0;
}
.trends-section .trends-header {
  margin-bottom: 1rem;
}
.trends-section .trends-divider {
  height: 1px;
  background-color: #0066FF;
  margin: 1rem 0;
}

@media (max-width: 1060px) {
  .content-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  .main-content {
    margin: 0 auto;
    padding: 0;
  }
  .sidebar {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .about-header {
    justify-content: center;
  }
  .blog-title {
    font-size: 1.3rem;
  }
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}