* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
p{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
li {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    list-style:none;
}
.site-header {
  position: relative;
  z-index: 1000;
  background: #000;
  border-top: 3px solid #1677f2;
  border-bottom: 1px solid #222;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.mega-active {
  background: #fff;
  border-bottom-color: #ddd;
}

.navbar {
  min-height: 78px;
  padding: 0;
  background: transparent;
}


/* Logo */
.bigthink-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  margin-right: 70px;
  width:15%;
}

.logo{
    display:none;
}

.logo.active{
    display:block !important;
}

.big-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 27px;
  border: 3px solid #fff;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.think-text {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.2px;
  transition: color 0.25s ease;
}

.think-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: background 0.25s ease;
}

/* Header beyaz olunca logo siyaha döner */
.site-header.mega-active .big-box {
  color: #000;
  border-color: #000;
}

.site-header.mega-active .think-text {
  color: #000;
}

.site-header.mega-active .think-text::after {
  background: #000;
}

/* Menus */
.header-left-menu {
  gap: 18px;
}

.header-right-menu {
  gap: 20px;
}

.navbar .nav-link,
.header-icon-link {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 0;
  background: transparent;
  border: none;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-header.mega-active .navbar .nav-link,
.site-header.mega-active .header-icon-link {
  color: #111;
}

.header-icon-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Search icon */
.header-search-icon {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  transition: stroke 0.25s ease;
}

.site-header.mega-active .header-search-icon {
  stroke: #111;
}

/* Book icon */
.header-book-icon {
  position: relative;
  width: 17px;
  height: 13px;
  border: 1.5px solid #fff;
  display: inline-block;
  transition: border-color 0.25s ease;
}

.header-book-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.5px;
  width: 1.5px;
  height: 13px;
  background: #fff;
  transition: background 0.25s ease;
}

.site-header.mega-active .header-book-icon {
  border-color: #111;
}

.site-header.mega-active .header-book-icon::before {
  background: #111;
}

.small-arrow {
  font-size: 11px;
  line-height: 1;
}

.site-header.mega-active .topics-arrow {
  transform: rotate(180deg);
  display: inline-block;
}

/* Sign / Membership */
.sign-item {
  margin-left: 70px;
}

.membership-btn {
  background: #ffc629;
  color: #000;
  border-radius: 3px;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border: none;
}

.membership-btn:hover {
  background: #e9b71e;
  color: #000;
}

/* Mega Menu - başta kapalı */
.topics-mega-menu {
  position: absolute;
  left: 0;
  top: 78px;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #111;
  padding: 62px 0 92px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

/* Açık hali */
.topics-mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-container {
  max-width: 1080px;
}

.mega-row {
  justify-content: space-between;
}

.mega-col h3 {
  color: #111;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
}

.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-col li {
  margin-bottom: 5px;
}

.mega-col a {
  color: #111;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.2;
}

.mega-col a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mobile */
@media (max-width: 991px) {
  .navbar {
    min-height: 70px;
    padding: 0 15px;
  }

  .bigthink-logo {
    margin-right: 0;
  }

  .navbar-collapse {
    padding: 24px 0;
  }

  .header-left-menu,
  .header-right-menu {
    gap: 18px;
    align-items: flex-start;
  }

  .header-right-menu {
    margin-top: 18px;
  }

  .sign-item {
    margin-left: 0;
  }

  .topics-mega-menu {
    position: static;
    display: none;
    padding: 30px 15px 45px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 1px solid #ddd;
  }

  .topics-mega-menu.is-open {
    display: block;
  }

  .mega-col {
    margin-bottom: 32px;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .navbar {
    min-height: 86px;
    padding: 0 15px;
  }

  .custom-container {
    max-width: 100%;
  }

  .bigthink-logo {
    margin-right: 0;
  }

  .big-box {
    width: 58px;
    height: 34px;
    font-size: 23px;
    border-width: 3px;
  }

  .think-text {
    font-size: 25px;
  }

  .navbar-collapse {
    background: #000;
    padding: 25px 0;
  }

  .navbar-nav {
    align-items: flex-start;
  }

  .left-menu,
  .right-menu {
    gap: 20px;
  }

  .right-menu {
    margin-top: 20px;
  }

  .sign-item {
    margin-left: 0;
  }

  .membership-btn {
    margin-top: 5px;
  }
}





/* Columns */
.left-column,
.center-column,
.right-column {
  padding: 0 12px;
}

.left-column {
  padding-left: 0;
  padding-right: 12px;
}

.center-column {
  border-left: 1px solid #111;
  border-right: 1px solid #111;
}

.right-column {
  padding-right: 0;
  overflow: hidden;
}

/* Article Common */
.small-article {
  margin-bottom: 34px;
}

.small-article.second {
  margin-top: 30px;
}

.article-img,
.featured-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.article-img {
  height: 145px;
}

.article-body {
  padding-top: 12px;
}

.category {
  display: block;
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 7px;
}

.italic {
  font-style: italic;
}

.small-title {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.6px;
  margin: 0 0 13px;
}

.small-desc {
  color: #707070;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 10px;
}

.author {
  color: #111;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin: 0;
}

/* Featured Center */
.featured-article {
  padding: 0 12px;
}

.video-box {
  position: relative;
  width: 100%;
  height: 285px;
  overflow: hidden;
  background: #000;
}

.featured-img {
  height: 100%;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.25) 24%,
    rgba(0, 0, 0, 0) 55%
  );
}

.play-button {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 0;
  height: 0;
  border: none;
  background: transparent;
  padding: 0;
}

.play-button span {
  display: block;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #fff;
}

.video-time {
  position: absolute;
  right: 14px;
  bottom: 14px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-style: italic;
}

.featured-body {
  padding-top: 24px;
}

.featured-title {
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -1.5px;
  margin: 0 0 15px;
}

.featured-desc {
  max-width: 520px;
  color: #777;
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 12px;
}

.quote-box {
  margin-top: 30px;
  max-width: 520px;
}

.quote-mark {
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 78px;
  font-weight: 900;
  line-height: 0.65;
  margin-bottom: 8px;
}

.quote-box p {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

/* Right Side */
.top-right {
  margin-bottom: 40px;
}

.classes-section {
  border-top: 1px solid #111;
  padding-top: 14px;
}

.classes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.classes-header h3 {
  color: #111;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  margin: 0;
}

.classes-header a {
  color: #111;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.classes-header a span {
  margin-left: 5px;
}

.classes-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.classes-slider::-webkit-scrollbar {
  display: none;
}

.class-card {
  flex: 0 0 185px;
  background: #000;
  color: #fff;
}

.class-img-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #064ad8;
}

.class-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-badge {
  position: absolute;
  top: 10px;
  left: 9px;
  z-index: 2;
  background: #ffc629;
  color: #000;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 800;
}

.member-badge::before {
  content: "🔒 ";
  font-size: 9px;
}

.class-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 8px 9px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.class-info {
  min-height: 115px;
  padding: 13px 10px 14px;
  background: #000;
}

.class-info h4 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 10px;
}

.teacher {
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  margin: 0 0 3px;
}

.meslegini-belirle-desc {
  color: white;
  font-size: 12px;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .bigthink-content {
    padding: 24px 0 50px;
  }



  .left-column,
  .center-column,
  .right-column {
    padding: 0;
    border: none;
  }

  .center-column {
    margin: 35px 0;
  }

  .featured-article {
    padding: 0;
  }

  .article-img {
    height: 230px;
  }

  .video-box {
    height: 360px;
  }

  .featured-title {
    font-size: 38px;
  }

  .classes-slider {
    overflow-x: auto;
  }

  .class-card {
    flex-basis: 210px;
  }
}

@media (max-width: 575px) {
  .bigthink-content {
    padding: 18px 0 40px;
  }

  .article-img {
    height: 190px;
  }

  .video-box {
    height: 245px;
  }

  .small-title {
    font-size: 24px;
  }

  .featured-title {
    font-size: 34px;
  }

  .quote-box p {
    font-size: 18px;
  }

  .class-card {
    flex-basis: 180px;
  }
}


.cosmic-feature-section {
  background: #fff;
  padding: 24px 0 60px;
}

.cosmic-container {
  max-width: 1075px;
}

.cosmic-feature {
  min-height: 465px;
  overflow: hidden;
}

/* Left black area */
.cosmic-text-box {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cosmic-content {
  max-width: 330px;
  text-align: center;
  padding: 40px 28px;
}

.cosmic-category {
  display: block;
  font-family:"Cormorant Garamond", serif;
  font-size: 15px;
  font-style: italic;
  color: #fff;
  margin-bottom: 18px;
}

.cosmic-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.7px;
  color: #fff;
  margin: 0 0 20px;
}

.cosmic-content p {
  color: #a7a7a7;
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 24px;
}

.cosmic-author {
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cosmic-author span {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
  margin-right: 5px;
}

/* Right image area */
.cosmic-image-box {
  background: #f7f1ef;
  overflow: hidden;
}

.cosmic-image-box img {
  width: 100%;
  height: 100%;
  min-height: 465px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.cosmic-feature:hover .cosmic-image-box img {
  transform: scale(1.025);
}

/* Responsive */
@media (max-width: 991px) {
  .cosmic-feature {
    min-height: auto;
  }

  .cosmic-text-box {
    min-height: 360px;
  }

  .cosmic-content h2 {
    font-size: 34px;
  }

  .cosmic-image-box img {
    min-height: 360px;
  }
}

@media (max-width: 575px) {
  .cosmic-feature-section {
    padding: 18px 0 45px;
  }

  .cosmic-text-box {
    min-height: 330px;
  }

  .cosmic-content {
    padding: 36px 24px;
  }

  .cosmic-content h2 {
    font-size: 29px;
  }

  .cosmic-content p {
    font-size: 14px;
  }

  .cosmic-image-box img {
    min-height: 260px;
  }
}

.substack-news-section {
  background: #fff;
  padding: 38px 0 70px;
}

.substack-news-container {
  max-width: 1080px;
}

/* Left Area */
.substack-column {
  padding-right: 24px;
}

.substack-title {
  color: #000;
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 3px;
  line-height:61px;
  margin: 0 0 28px;
}

.substack-list {
  width: 100%;
}

.substack-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 68px;
  padding: 8px 0;
  color: #000;
  text-decoration: none;
  border-bottom: 1px dotted #111;
}

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

.substack-item img {
  width: 49px;
  height: 49px;
  object-fit: cover;
  flex: 0 0 49px;
  background: #000;
}

.substack-item h4 {
  color: #000;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 5px;
  line-height: 1.1;
}

.substack-item p {
  color: #6f6f6f;
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}

.substack-item:hover h4 {
  text-decoration: underline;
}

/* News Columns */
.news-column {
  border-left: 1px solid #111;
  padding: 0 14px;
}

.last-news-column {
  border-right: none;
}

.news-card {
  display: flex;
  flex-direction: column;
}

.news-card h2 {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.7px;
}

.news-desc {
  color: #6f6f6f;
  font-size: 13px;
  line-height: 1.45;
}

.news-author {
  color: #111;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: auto 0 12px;
}

.news-card img {
  width: 100%;
  height: 136px;
  object-fit: cover;
  display: block;
  background: #eee;
}

/* Responsive */
@media (max-width: 991px) {
  .substack-news-section {
    padding: 32px 0 55px;
  }

  .substack-news-container {
    max-width: 720px;
  }

  .substack-column {
    padding-right: 0;
    margin-bottom: 38px;
  }

  .substack-title {
    margin-bottom: 18px;
  }

  .news-column {
    border-left: none;
    border-top: 1px solid #111;
    padding: 24px 0;
  }

  .news-card {
    min-height: auto;
  }

  .news-card h2 {
    font-size: 32px;
  }

  .news-desc {
    margin-bottom: 24px;
  }

  .news-author {
    margin: 0 0 14px;
  }

  .news-card img {
    height: 230px;
  }
}

@media (max-width: 575px) {
  .substack-news-section {
    padding: 26px 0 45px;
  }

  .substack-title {
    font-size: 12px;
    letter-spacing: 2.5px;
  }

  .substack-item {
    gap: 12px;
  }

  .substack-item img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .news-card h2 {
    font-size: 27px;
  }

  .news-card img {
    height: 190px;
  }
}

.library-section {
  background: #f5f3ee;
  padding: 48px 0 70px;
}

.library-container {
  max-width: 1080px;
}

/* Header */
.library-header {
  max-width: 850px;
  margin-bottom: 42px;
}

.library-title-wrap {
  margin-bottom: 20px;
}

.library-title-wrap h2 {
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 150px;
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -4px;
  margin: 0;
}

.library-subtitle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.library-subtitle span {
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.library-subtitle strong {
  color: #000;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 16px;
  line-height: 1;
}

.library-header p {
  max-width: 660px;
  color: #677082;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  letter-space:10px;
  margin: 0;
}

/* Tabs */
.library-tabs {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.library-tabs::-webkit-scrollbar {
  display: none;
}

.library-tab {
  position: relative;
  background: transparent;
  border: none;
  color: #b5b5b5;
  font-size: 14px;
  font-weight: 500;
  padding: 0 0 12px;
  white-space: nowrap;
  cursor: pointer;
}

.library-tab.active {
  color: #111;
}

.library-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #111;
}

/* Grid */
.library-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

/* Card */
.library-card {
  background: #000;
  color: #fff;
  overflow: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.library-card:hover {
  transform: translateY(-3px);
}

.library-card.is-hidden {
  display: none;
}

.library-image {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: #222;
}

.library-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.library-card:hover .library-image img {
  transform: scale(1.04);
}

.library-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.28) 34%,
    rgba(0, 0, 0, 0) 70%
  );
}

.library-play {
  position: absolute;
  left: 8px;
  bottom: 10px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.library-time {
  position: absolute;
  right: 8px;
  bottom: 8px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
}

.library-video-count {
  position: absolute;
  left: 27px;
  bottom: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.library-member {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  background: #ffc629;
  color: #000;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 800;
}

.library-member::before {
  content: "🔒 ";
  font-size: 9px;
}

/* Card Body */
.library-card-body {
  min-height: 132px;
  padding: 11px 9px 13px;
  background: #000;
}

.library-card-body h3 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.25px;
  margin: 0 0 8px;
}

.library-speaker {
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 3px;
}

.library-role {
  color: #8d8d8d;
  font-size: 12px;
  line-height: 1.25;
  margin: 0 0 10px 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .library-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .library-image {
    height: 210px;
  }
}

@media (max-width: 991px) {
  .library-section {
    padding: 42px 0 60px;
  }

  .library-container {
    max-width: 720px;
  }

  .library-title-wrap h2 {
    font-size: 86px;
  }

  .library-subtitle strong {
    font-size: 26px;
    letter-spacing: 12px;
  }

  .library-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .library-image {
    height: 190px;
  }
}

@media (max-width: 767px) {
  .library-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .library-tabs {
    gap: 26px;
  }
}

@media (max-width: 575px) {
  .library-section {
    padding: 34px 0 50px;
  }

  .library-title-wrap h2 {
    font-size: 66px;
    letter-spacing: -2.5px;
  }

  .library-subtitle {
    gap: 8px;
  }

  .library-subtitle span {
    font-size: 18px;
  }

  .library-subtitle strong {
    font-size: 20px;
    letter-spacing: 8px;
  }

  .library-header p {
    font-size: 14px;
  }

  .library-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .library-image {
    height: 240px;
  }

  .library-card-body h3 {
    font-size: 22px;
  }
}

.mini-philosophy-section {
  background: #fff;
  padding: 58px 0 80px;
}

.mini-container {
  max-width: 1080px;
}

/* Top black line */
.mini-top-line {
  width: 100%;
  height: 9px;
  background: #000;
  margin-bottom: 44px;
}

/* Header */
.mini-header {
  text-align: center;
  margin-bottom: 50px;
}

.mini-header h2 {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 35px;
  line-height: 1;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}

.mini-header h2 strong {
  font-weight: 900;
  margin-right: 4px;
}

.mini-header h2 span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

.mini-tagline {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 18px;
}

.mini-with {
  color: #111;
  font-size: 11px;
  font-weight: 900;
  margin: 0;
}

.mini-with span {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  margin-right: 4px;
}

/* Content Layout */
.mini-content {
  align-items: stretch;
}

/* Left Featured */
.mini-featured {
  padding-right: 18px;
}

.mini-featured img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  display: block;
}

.mini-featured-body {
  padding-top: 18px;
}

.mini-featured-body h3 {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin: 0 0 17px;
}

.mini-featured-body p {
  color: #777;
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 11px;
}

/* Author */
.mini-author {
  color: #111;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Right List */
.mini-list-column {
  border-left: 1px solid #111;
  padding-left: 22px;
}

.mini-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  min-height: 137px;
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #111;
}

.mini-list-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.mini-list-text {
  flex: 1;
}

.mini-list-text h4 {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.2px;
  margin: 0 0 8px;
}

.mini-list-text p {
  color: #777;
  font-size: 13px;
  line-height: 1.35;
  margin: 0 0 26px;
}

.mini-list-item img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  display: block;
  flex: 0 0 95px;
}

/* Hover */
.mini-featured,
.mini-list-item {
  cursor: pointer;
}

.mini-featured:hover h3,
.mini-list-item:hover h4 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .mini-philosophy-section {
    padding: 42px 0 65px;
  }

  .mini-container {
    max-width: 720px;
  }

  .mini-top-line {
    margin-bottom: 34px;
  }

  .mini-header {
    margin-bottom: 38px;
  }

  .mini-featured {
    padding-right: 0;
    margin-bottom: 36px;
  }

  .mini-featured img {
    height: 420px;
  }

  .mini-list-column {
    border-left: none;
    padding-left: 0;
  }

  .mini-list-item {
    border-top: 1px solid #111;
    border-bottom: none;
    padding: 22px 0;
    margin-bottom: 0;
  }

  .mini-featured-body h3 {
    font-size: 32px;
  }

  .mini-list-text h4 {
    font-size: 23px;
  }

  .mini-list-item img {
    width: 120px;
    height: 100px;
    flex-basis: 120px;
  }
}

@media (max-width: 575px) {
  .mini-philosophy-section {
    padding: 34px 0 55px;
  }

  .mini-top-line {
    height: 7px;
  }

  .mini-header h2 {
    font-size: 29px;
  }

  .mini-tagline {
    font-size: 16px;
  }

  .mini-featured img {
    height: 285px;
  }

  .mini-featured-body h3 {
    font-size: 27px;
  }

  .mini-list-item {
    gap: 15px;
  }

  .mini-list-text h4 {
    font-size: 20px;
  }

  .mini-list-text p {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .mini-list-item img {
    width: 90px;
    height: 90px;
    flex-basis: 90px;
  }
}


.interview-section {
  background: #fff;
  padding: 58px 0 82px;
}

.interview-container {
  max-width: 1080px;
}

/* Top black line */
.interview-top-line {
  width: 100%;
  height: 9px;
  background: #000;
  margin-bottom: 48px;
}

/* Header */
.interview-header {
  text-align: center;
  margin-bottom: 52px;
}

.interview-header h2 {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1;
  margin: 0 0 28px;
}

.interview-header h2::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 0;
  bottom: -7px;
  height: 4px;
  background: #000;
}

.interview-header h2::before {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -23px;
  width: 13px;
  height: 18px;
  border-left: 4px solid #000;
  border-bottom: 4px solid #000;
  transform: skewX(-28deg);
}

.interview-header p {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  margin: 0;
}

/* Layout */
.interview-content {
  align-items: stretch;
}

.interview-list-column {
  padding-right: 20px;
}

.interview-feature-column {
  border-left: 1px solid #111;
  padding-left: 20px;
}

/* Left List */
.interview-list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #111;
  cursor: pointer;
}

.interview-list-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.interview-thumb {
  position: relative;
  width: 102px;
  height: 82px;
  flex: 0 0 102px;
  overflow: hidden;
  background: #ddd;
}

.interview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.05)
  );
}

.interview-play {
  position: absolute;
  left: 7px;
  bottom: 8px;
  z-index: 2;
  color: #fff;
  font-size: 13px;
}

.interview-time {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
}

.interview-list-text h3 {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 8px;
}

.interview-list-text p {
  color: #656565;
  font-size: 12px;
  line-height: 1.35;
  margin: 0 0 13px;
}

.interview-author {
  color: #111;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Featured Card */
.interview-feature-card {
  cursor: pointer;
}

.interview-feature-video {
  position: relative;
  width: 100%;
  height: 435px;
  overflow: hidden;
  background: #eee;
}

.interview-feature-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.12) 28%,
    rgba(0, 0, 0, 0) 65%
  );
}

.interview-feature-play {
  position: absolute;
  left: 8px;
  bottom: 9px;
  z-index: 2;
  color: #fff;
  font-size: 14px;
}

.interview-feature-time {
  position: absolute;
  right: 10px;
  bottom: 9px;
  z-index: 2;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
}

.interview-feature-body {
  padding-top: 16px;
}

.interview-feature-body h3 {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin: 0 0 16px;
}

.interview-feature-body p {
  color: #666;
  font-size: 12px;
  line-height: 1.38;
  margin: 0 0 13px;
  max-width: 520px;
}

/* Hover */
.interview-list-item:hover h3,
.interview-feature-card:hover h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .interview-section {
    padding: 42px 0 64px;
  }

  .interview-container {
    max-width: 720px;
  }

  .interview-top-line {
    margin-bottom: 38px;
  }

  .interview-header {
    margin-bottom: 38px;
  }

  .interview-list-column {
    padding-right: 0;
    margin-bottom: 36px;
  }

  .interview-feature-column {
    border-left: none;
    padding-left: 0;
  }

  .interview-list-item {
    gap: 18px;
  }

  .interview-thumb {
    width: 130px;
    height: 94px;
    flex-basis: 130px;
  }

  .interview-list-text h3 {
    font-size: 22px;
  }

  .interview-feature-video {
    height: 410px;
  }

  .interview-feature-body h3 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .interview-section {
    padding: 34px 0 54px;
  }

  .interview-top-line {
    height: 7px;
  }

  .interview-header h2 {
    font-size: 24px;
  }

  .interview-header p {
    font-size: 16px;
  }

  .interview-list-item {
    gap: 13px;
  }

  .interview-thumb {
    width: 95px;
    height: 78px;
    flex-basis: 95px;
  }

  .interview-list-text h3 {
    font-size: 18px;
  }

  .interview-list-text p {
    font-size: 11px;
  }

  .interview-feature-video {
    height: 270px;
  }

  .interview-feature-body h3 {
    font-size: 27px;
  }
}


.bigthink-footer {
  background: #000;
  color: #fff;
  padding: 42px 0 44px;
}

.footer-container {
  max-width: 1080px;
}

.footer-row {
  align-items: flex-start;
}

/* Logo Area */
.footer-brand-area {
  padding-top: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-big-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 25px;
  border: 3px solid #fff;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.4px;
}

.footer-think-text {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.2px;
}

.footer-think-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: #fff;
}

.footer-slogan {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

/* Menu Area */
.footer-menu-area {
  padding-top: 4px;
}

.footer-menu-col h4 {
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 6px;
  margin: 0 0 18px;
}

.footer-menu-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-col li {
  margin-bottom: 13px;
}

.footer-menu-col a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.footer-menu-col a:hover {
  color: #ffc629;
}

/* Responsive */
@media (max-width: 991px) {
  .bigthink-footer {
    padding: 38px 0 42px;
  }

  .footer-container {
    max-width: 720px;
  }

  .footer-brand-area {
    margin-bottom: 36px;
  }

  .footer-menu-col {
    margin-bottom: 28px;
  }
}

@media (max-width: 575px) {
  .bigthink-footer {
    padding: 34px 0 32px;
  }

  .footer-slogan {
    font-size: 20px;
  }

  .footer-menu-col h4 {
    letter-spacing: 4px;
    margin-bottom: 14px;
  }

  .footer-menu-col a {
    font-size: 14px;
  }
}
.promo-tiles-section {
  background: #fff;
  padding: 78px 0 115px;
}

/* Common Card */
.promo-card {
  position: relative;
  display: block;
  width: 100%;
  height: 345px;
  overflow: hidden;
  background: #eee;
  color: #000;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card 1 - Events */
.promo-events {
  background: #000;
}

.promo-events::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.2)
  );
}

.promo-events-logo {
  position: absolute;
  top: 18px;
  left: 16px;
  z-index: 2;
  color: #fff;
  line-height: 0.9;
}

.promo-events-logo span {
  display: block;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -2px;
}

.promo-events-logo strong {
  display: block;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -1px;
  opacity: 0.55;
}

/* Card 2 - Members */
.promo-members {
  background: #f2ede7;
}

.promo-members-image {
  height: 267px;
  overflow: hidden;
}

.promo-members-footer {
  height: 78px;
  background: #f2ede7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.promo-small-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}

.promo-small-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 24px;
  border: 3px solid #000;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}

.promo-small-logo strong {
  position: relative;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -1px;
}

.promo-small-logo strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: #000;
}

.promo-members-footer p {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 8px;
  margin: 0;
}

/* Card 3 - Store */
.promo-store {
  background: #e6e6e2;
}

.promo-store-top {
  height: 265px;
  position: relative;
  background: #d8dee3;
  padding: 28px 20px 18px;
}

.store-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 14px;
}

.store-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 21px;
  border: 3px solid #111;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.store-logo em {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: #111;
}

.promo-store-top img {
  height: 165px;
  object-fit: cover;
  border: 8px solid #f7f2eb;
}

.promo-store-bottom {
  height: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.promo-store-bottom img {
  height: 100%;
  object-fit: cover;
}

/* Card 4 - YouTube */
.promo-youtube {
  background: #f4eee8;
}

.youtube-collage {
  height: 265px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.youtube-collage img {
  height: 100%;
  object-fit: cover;
}

.youtube-footer {
  height: 80px;
  background: #f4eee8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-logo-text {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000;
}

.youtube-logo-text span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 22px;
  border: 3px solid #000;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.youtube-logo-text strong {
  position: relative;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -1px;
}

.youtube-logo-text strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: #000;
}

.youtube-logo-text em {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
}

.youtube-logo-text b {
  font-size: 24px;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 991px) {
  .promo-tiles-section {
    padding: 60px 0 80px;
  }

  .promo-card {
    height: 360px;
  }

  .promo-members-image,
  .promo-store-top,
  .youtube-collage {
    height: 278px;
  }

  .promo-members-footer,
  .promo-store-bottom,
  .youtube-footer {
    height: 82px;
  }
}

@media (max-width: 575px) {
  .promo-tiles-section {
    padding: 42px 0 60px;
  }

  .promo-card {
    height: 340px;
  }

  .promo-events-logo span {
    font-size: 27px;
  }

  .promo-events-logo strong {
    font-size: 26px;
  }
}


.mini-philosophy-section {
  background: #fff;
  padding: 56px 0 78px;
}


/* Top black line */
.mini-top-line {
  width: 100%;
  height: 9px;
  background: #000;
  margin-bottom: 44px;
}

/* Heading */
.mini-heading {
  text-align: center;
  margin-bottom: 52px;
}

.mini-heading h2 {
  color: #000;
  font-size: 34px;
  line-height: 1;
  margin: 0 0 10px;
}

.mini-heading h2 strong {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
}

.mini-heading h2 span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size:40px;
}

.mini-description {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 17px;
}

.mini-author-heading {
  color: #111;
  font-size: 11px;
  margin: 0;
}

.mini-author-heading em {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
}

.mini-author-heading strong {
  font-weight: 900;
}

/* Layout */
.mini-content-row {
  align-items: stretch;
}

/* Left article */
.mini-main-col {
  padding-right: 20px;
}

.mini-main-card {
  cursor: pointer;
}

.mini-main-img {
  width: 100%;
  height: 445px;
  object-fit: cover;
  display: block;
}

.mini-main-body {
  padding-top: 17px;
}

.mini-main-body h3 {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.8px;
  margin: 0 0 15px;
}

.mini-main-body p {
  color: #6d6d6d;
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 13px;
}

/* Author */
.mini-author {
  display: inline-block;
  color: #111;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Right column */
.mini-side-col {
  border-left: 1px solid #111;
  padding-left: 22px;
}

.mini-side-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  min-height: 137px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #111;
  cursor: pointer;
}

.mini-side-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.mini-side-text {
  flex: 1;
  padding-top: 2px;
}

.mini-side-text h4 {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.2px;
  margin: 0 0 8px;
}

.mini-side-text p {
  color: #6d6d6d;
  font-size: 13px;
  line-height: 1.35;
  margin: 0 0 28px;
}

.mini-side-item img {
  width: 105px;
  height: 105px;
  object-fit: cover;
  display: block;
  flex: 0 0 105px;
}

/* Hover */
.mini-main-card:hover h3,
.mini-side-item:hover h4 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .mini-philosophy-section {
    padding: 42px 0 65px;
  }


  .mini-top-line {
    margin-bottom: 34px;
  }

  .mini-heading {
    margin-bottom: 38px;
  }

  .mini-main-col {
    padding-right: 0;
    margin-bottom: 36px;
  }

  .mini-main-img {
    height: 420px;
  }

  .mini-side-col {
    border-left: none;
    padding-left: 0;
  }

  .mini-side-item {
    border-top: 1px solid #111;
    border-bottom: none;
    padding: 22px 0;
    margin-bottom: 0;
  }

  .mini-main-body h3 {
    font-size: 32px;
  }

  .mini-side-text h4 {
    font-size: 23px;
  }

  .mini-side-item img {
    width: 120px;
    height: 105px;
    flex-basis: 120px;
  }
}

@media (max-width: 575px) {
  .mini-philosophy-section {
    padding: 34px 0 55px;
  }

  .mini-top-line {
    height: 7px;
  }

  .mini-heading h2 {
    font-size: 29px;
  }

  .mini-description {
    font-size: 16px;
  }

  .mini-main-img {
    height: 285px;
  }

  .mini-main-body h3 {
    font-size: 27px;
  }

  .mini-side-item {
    gap: 15px;
  }

  .mini-side-text h4 {
    font-size: 20px;
  }

  .mini-side-text p {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .mini-side-item img {
    width: 90px;
    height: 90px;
    flex-basis: 90px;
  }
}


.bt-interview-section {
  background: #fff;
  padding: 56px 0 82px;
}

.bt-interview-container {
  max-width: 1080px;
}

/* Üst siyah çizgi */
.bt-interview-line {
  width: 100%;
  height: 9px;
  background: #000;
  margin-bottom: 48px;
}

/* Başlık */
.bt-interview-heading {
  text-align: center;
  margin-bottom: 50px;
}

.bt-interview-heading h2 {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.8px;
  margin: 0 0 28px;
}

.bt-interview-heading h2::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 0;
  bottom: -7px;
  height: 4px;
  background: #000;
}

.bt-interview-heading h2::before {
  content: "";
  position: absolute;
  left: 6px;
  bottom: -23px;
  width: 13px;
  height: 18px;
  border-left: 4px solid #000;
  border-bottom: 4px solid #000;
  transform: skewX(-25deg);
}

.bt-interview-heading p {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  margin: 0;
}

/* Layout */
.bt-interview-content {
  align-items: stretch;
}

.bt-interview-left {
  padding-right: 20px;
}

.bt-interview-right {
  border-left: 1px solid #111;
  padding-left: 20px;
}

/* Sol küçük videolar */
.bt-small-video {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #111;
  cursor: pointer;
}

.bt-small-video:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.bt-small-thumb {
  position: relative;
  width: 102px;
  height: 82px;
  flex: 0 0 102px;
  overflow: hidden;
  background: #ddd;
}

.bt-small-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video koyu alt geçiş */
.bt-small-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0)
  );
}

.bt-play {
  position: absolute;
  left: 7px;
  bottom: 7px;
  z-index: 2;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.bt-time {
  position: absolute;
  right: 7px;
  bottom: 7px;
  z-index: 2;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
}

.bt-small-text {
  flex: 1;
  padding-top: 2px;
}

.bt-small-text h3 {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 7px;
}

.bt-small-text p {
  color: #666;
  font-size: 12px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.bt-author {
  display: inline-block;
  color: #111;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Sağ büyük video */
.bt-feature-video {
  cursor: pointer;
}

.bt-feature-image {
  position: relative;
  width: 100%;
  height: 435px;
  overflow: hidden;
  background: #eee;
}

.bt-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bt-video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 28%,
    rgba(0, 0, 0, 0) 65%
  );
}

.bt-feature-play {
  position: absolute;
  left: 8px;
  bottom: 9px;
  z-index: 2;
  color: #fff;
  font-size: 14px;
}

.bt-feature-time {
  position: absolute;
  right: 10px;
  bottom: 9px;
  z-index: 2;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
}

.bt-feature-body {
  padding-top: 16px;
}

.bt-feature-body h3 {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin: 0 0 16px;
}

.bt-feature-body p {
  max-width: 520px;
  color: #666;
  font-size: 12px;
  line-height: 1.38;
  margin: 0 0 13px;
}

/* Hover */
.bt-small-video:hover h3,
.bt-feature-video:hover h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .bt-interview-section {
    padding: 42px 0 64px;
  }

  .bt-interview-container {
    max-width: 720px;
  }

  .bt-interview-line {
    margin-bottom: 38px;
  }

  .bt-interview-heading {
    margin-bottom: 38px;
  }

  .bt-interview-left {
    padding-right: 0;
    margin-bottom: 36px;
  }

  .bt-interview-right {
    border-left: none;
    padding-left: 0;
  }

  .bt-small-video {
    gap: 18px;
  }

  .bt-small-thumb {
    width: 130px;
    height: 94px;
    flex-basis: 130px;
  }

  .bt-small-text h3 {
    font-size: 22px;
  }

  .bt-feature-image {
    height: 410px;
  }

  .bt-feature-body h3 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .bt-interview-section {
    padding: 34px 0 54px;
  }

  .bt-interview-line {
    height: 7px;
  }

  .bt-interview-heading h2 {
    font-size: 24px;
  }

  .bt-interview-heading p {
    font-size: 16px;
  }

  .bt-small-video {
    gap: 13px;
  }

  .bt-small-thumb {
    width: 95px;
    height: 78px;
    flex-basis: 95px;
  }

  .bt-small-text h3 {
    font-size: 18px;
  }

  .bt-small-text p {
    font-size: 11px;
  }

  .bt-feature-image {
    height: 270px;
  }

  .bt-feature-body h3 {
    font-size: 27px;
  }
}




.video-detail-section {
  background: #000;
  color: #fff;
  padding: 48px 0 88px;
}


.video-detail-row {
  align-items: flex-start;
}

/* Left */
.video-main-col {
  padding-right: 34px;
}

.main-video-box {
  position: relative;
  width: 100%;
  height: 485px;
  overflow: hidden;
  background: #111;
  border: 1px solid #333;
}

.main-video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Main Play Button */
.main-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: none;
  background: #000;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.main-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #111;
}

.main-play-btn span {
  display: block;
  margin-left: 8px;
  width: 0;
  height: 0;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  border-left: 35px solid #fff;
}

/* Info */
.video-info {
  padding-top: 22px;
}

.video-category {
  display: block;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  margin-bottom: 16px;
}

.video-info h1 {
  max-width: 920px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin: 0 0 16px;
}

.video-info p {
  max-width: 640px;
  color: #858585;
  font-size: 14px;
  font-weight:400;
  line-height: 1.35;
  margin: 0 0 28px;
}

/* Tags */
.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 20px;
  color: #fff;
  border: 1px solid #333;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.video-tags a:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Right Sidebar */
.video-sidebar-col {
  padding-left: 34px;
}

.speaker-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.speaker-card img {
  width: 106px;
  height: 106px;
  object-fit: cover;
  flex: 0 0 106px;
}

.speaker-text h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  margin: 12px 0 24px;
}

.speaker-text p {
  max-width: 460px;
  color: #8a8a8a;
  font-size: 14px;
  font-weight:400;
  line-height: 1.45;
  margin: 0;
}

/* Up Next */
.up-next-card {
  max-width: 560px;
}

.up-next-label {
  display: block;
  color: #777;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 28px;
}

.up-next-content {
  display: flex;
  align-items: flex-start;
  gap: 36px;
}

.up-next-text {
  flex: 1;
}

.up-next-text h3 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.3px;
  margin: 0 0 28px;
}

.up-next-text p {
  color: #929292;
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 24px;
}

.up-next-author {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.up-next-thumb {
  position: relative;
  width: 165px;
  height: 165px;
  flex: 0 0 165px;
  overflow: hidden;
  background: #111;
}

.up-next-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.up-next-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.05)
  );
}

.small-play {
  position: absolute;
  left: 9px;
  bottom: 10px;
  z-index: 2;
  color: #fff;
  font-size: 16px;
}

.small-time {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 1199px) {
  .main-video-box {
    height: 430px;
  }

  .speaker-card {
    margin-bottom: 240px;
  }
}

@media (max-width: 991px) {
  .video-detail-section {
    padding: 36px 0 70px;
  }



  .video-main-col {
    padding-right: 0;
    margin-bottom: 52px;
  }

  .video-sidebar-col {
    padding-left: 0;
  }

  .main-video-box {
    height: 390px;
  }

  .speaker-card {
    margin-bottom: 56px;
  }

  .up-next-card {
    max-width: 100%;
  }

  .up-next-content {
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .video-detail-section {
    padding: 26px 0 56px;
  }

  .main-video-box {
    height: 245px;
  }

  .main-play-btn {
    width: 74px;
    height: 74px;
  }

  .main-play-btn span {
    border-top-width: 17px;
    border-bottom-width: 17px;
    border-left-width: 27px;
  }

  .video-info h1 {
    font-size: 29px;
  }

  .video-info p {
    font-size: 15px;
  }

  .video-tags a {
    font-size: 17px;
    min-height: 40px;
    padding: 8px 15px;
  }

  .speaker-card {
    gap: 16px;
  }

  .speaker-card img {
    width: 86px;
    height: 86px;
    flex-basis: 86px;
  }

  .speaker-text h2 {
    font-size: 21px;
    margin-top: 4px;
    margin-bottom: 12px;
  }

  .speaker-text p {
    font-size: 14px;
  }

  .up-next-content {
    flex-direction: column;
  }

  .up-next-thumb {
    width: 100%;
    height: 220px;
    flex-basis: auto;
  }

  .up-next-text h3 {
    font-size: 24px;
  }

  .up-next-text p {
    font-size: 15px;
  }
}


.video-tabs-section {
  background: #fff;
  padding: 55px 0 90px;
}


/* Left column */
.tabs-content-col {
  padding-right: 28px;
}

/* Tabs */
.video-tabs-header {
  display: flex;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 25px;
  justify-content: center;
}

.video-tab {
  position: relative;
  background: transparent;
  border: none;
  padding: 0 0 14px;
  color: #435066;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.video-tab.active {
  color: #111;
}

.video-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 4px;
  background: #111;
}
.video-tab-panel{
    display:none;
}

.video-tab-panel.active {
  display: flex;
  justify-content:center;
}

.video-tab-panel p {
  color: #171717;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width:610px;
}

.video-tab-panel ul {
  color: #171717;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width:550px;
}


/* Right ad */
.ad-col {
  padding-left: 0;
  display: flex;
  justify-content: flex-start;
}

.ad-card {
  display: block;
  width: 260px;
  height: 210px;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background: #f6dada;
  color: #fff;
  text-decoration: none;
  box-shadow: none;
}

.ad-top {
  position: relative;
  height: 45px;
  background: #f7dede;
  padding: 9px 12px;
}

.ad-text h3 {
  color: #6c1717;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.08;
  margin: 0;
}

.ad-options {
  position: absolute;
  top: 4px;
  right: 7px;
  color: #169bd5;
  font-size: 18px;
  line-height: 1;
}

.ad-card img {
  width: 100%;
  height: 123px;
  object-fit: cover;
  display: block;
}

.ad-footer {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #3b0808, #5f100d);
  padding: 0 16px 0 12px;
}

.ad-footer span {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.ad-footer strong {
  color: #fff;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .video-tabs-section {
    padding: 42px 0 70px;
  }


  .tabs-content-col {
    padding-right: 0;
  }

  .video-tabs-header {
    margin-bottom: 35px;
  }

  .video-tab-panel {
    max-width: 100%;
  }

  .ad-col {
    margin-top: 35px;
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .video-tabs-section {
    padding: 32px 0 55px;
  }

  .video-tabs-header {
    gap: 18px;
  }

  .video-tab {
    font-size: 15px;
  }

  .video-tab-panel p {
    font-size: 15px;
  }

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

.gereklilik h2{
    font-family:"Cormorant Garamond", serif;
    font-size:30px;
}

.course-hero-section {
  background: #000;
  color: #fff;
  min-height: 680px;
  padding: 95px 0 60px;
  border-bottom: 1px solid #fff;
}


.course-hero-row {
  min-height: 520px;
}

/* Left */
.course-hero-content {
  padding-right: 60px;
}

.course-meta {
  color: #ffc629;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 15px;
}

.course-hero-content h1 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 0 0 28px;
}

.course-hero-content p {
  max-width: 510px;
  color: #9a9a9a;
  font-size: 18px;
  font-weight:300;
  line-height: 1.45;
  margin: 0 0 210px;
}

.course-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffc629;
  color: #000;
  min-width: 145px;
  height: 43px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.course-btn:hover {
  background: #e8b61d;
  color: #000;
  transform: translateY(-2px);
}

/* Right Image */
.course-hero-image-col {
  display: flex;
  justify-content: flex-end;
  position:relative;
}

.course-image-box {
  width: 100%;
  overflow: hidden;
  background: #111;
}

.course-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1199px) {
  .course-hero-content h1 {
    font-size: 44px;
  }

  .course-image-box {
    width: 470px;
    height: 470px;
  }

  .course-hero-content p {
    margin-bottom: 150px;
  }
}

@media (max-width: 991px) {
  .course-hero-section {
    padding: 70px 0 70px;
  }


  .course-hero-content {
    padding-right: 0;
    margin-bottom: 45px;
  }

  .course-hero-content h1 {
    font-size: 44px;
  }

  .course-hero-content p {
    margin-bottom: 35px;
  }

  .course-hero-image-col {
    justify-content: flex-start;
  }

  .course-image-box {
    width: 100%;
    height: 430px;
  }
}

@media (max-width: 575px) {
  .course-hero-section {
    padding: 48px 0 55px;
    min-height: auto;
  }

  .course-meta {
    font-size: 12px;
  }

  .course-hero-content h1 {
    font-size: 36px;
  }

  .course-hero-content p {
    font-size: 15px;
  }

  .course-image-box {
    height: 310px;
  }
}



.article-hero-section {
  background: #fff;
  padding: 36px 0 80px;
}

.article-hero-container {
  max-width: 1080px;
}

/* Small black mark */
.article-top-mark {
  width: 48px;
  height: 12px;
  background: #000;
  margin: 0 auto 34px;
}

/* Header */
.article-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 58px;
}

.article-header h1 {
  color: #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin: 0 0 24px;
}

.article-subtitle {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 28px;
}

.article-meta {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  line-height: 1.4;
}

.article-meta p {
  margin: 0 0 4px;
  font-style: italic;
}

.article-meta strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  font-style: normal;
}

.article-meta span {
  display: block;
  font-style: italic;
  font-weight: 700;
}

/* Image */
.article-feature-image {
  width: 660px;
  margin: 0 auto;
}

.article-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.article-feature-image figcaption {
  color: #8a8a8a;
  font-size: 11px;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 991px) {
  .article-hero-section {
    padding: 34px 0 65px;
  }

  .article-header {
    max-width: 680px;
    margin-bottom: 46px;
  }

  .article-header h1 {
    font-size: 34px;
  }

  .article-subtitle {
    font-size: 17px;
  }

  .article-feature-image {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 575px) {
  .article-hero-section {
    padding: 28px 0 50px;
  }

  .article-top-mark {
    width: 42px;
    height: 9px;
    margin-bottom: 26px;
  }

  .article-header h1 {
    font-size: 28px;
    line-height: 1.12;
  }

  .article-subtitle {
    font-size: 15px;
  }

  .article-subtitle br,
  .article-header h1 br {
    display: none;
  }

  .article-feature-image figcaption {
    font-size: 10px;
  }
}



.article-content-section {
  background: #fff;
  padding: 56px 0 90px;
}

.article-content-container {
  max-width: 1540px;
}

/* Left Sidebar */
.article-sidebar {

  padding-right: 55px;
}
.article-sidebar a{
    font-family: "Inter", sans-serif;
    text-decoration:none;
    color:#000;
}

.article-sidebar li{
    margin-bottom:10px;

}
.article-sidebar h3{
    font-family: "Inter", sans-serif;
    font-size:15px;

}
.substack-link {
  display: inline-block;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
  margin-bottom: 24px;
}

.substack-link span {
  display: block;
  font-size: 17px;
  font-weight: 400;
  margin-top: 2px;
}

.substack-link:hover {
  text-decoration: underline;
}

.article-tags-small {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.article-tags-small a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  text-decoration: none;
}

.article-tags-small a:hover {
  border-color: #111;
  color: #000;
}

/* Main */

.adapted-note {
  margin-bottom: 12px;
}

.small-black-mark {
  width: 32px;
  height: 10px;
  background: #000;
  margin-bottom: 10px;
}

.adapted-note p {
  color: #222;
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.adapted-note a {
  color: #111;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Article Text */
.article-text {
  max-width: 660px;
}

.article-text p {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 28px;
}
.article-text h3{
    font-family:"Cormorant Garamond", serif;
    font-weight:600;
}

.article-text li {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  margin: 0 0 8px;
}

.drop-heading {
  display: inline;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 8px;
  word-spacing: 4px;
  margin-right: 4px;
}

.article-text em {
  font-style: italic;
  font-weight: 700;
}

.article-text blockquote {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.65;
  margin: 0;
  max-width: 640px;
}

/* Responsive */
@media (max-width: 991px) {
  .article-content-section {
    padding: 42px 0 70px;
  }

  .article-content-container {
    max-width: 720px;
  }

  .article-sidebar {
    padding-right: 0;
    margin-bottom: 42px;
  }

  .article-body-content {
    padding-left: 0;
  }

  .article-text {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .article-content-section {
    padding: 34px 0 55px;
  }

  .books-logo {
    font-size: 34px;
  }

  .article-text p {
    font-size: 18px;
  }

  .drop-heading {
    font-size: 13px;
    letter-spacing: 5px;
  }

  .article-text blockquote {
    font-size: 16px;
  }
}

.category-page-section {
  background: #fff;
  padding: 48px 0 70px;
}

.category-container {
  max-width: 1080px;
}

/* Header */
.category-header {
  margin-bottom: 22px;
}

.category-header h1 {
  color: #000;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.category-parent {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 13px;
  border: 1px solid #e1e1e1;
  color: #333;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
}

/* Tabs */
.category-tabs-wrap {
  margin-bottom: 38px;
}

.category-top-line {
  width: 100%;
  height: 7px;
  background: #000;
}

.category-tabs {
  display: flex;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid #e1e1e1;
}

.category-tab {
  position: relative;
  background: transparent;
  border: none;
  color: #b8b8b8;
  font-size: 16px;
  font-weight: 400;
  padding: 18px 0 14px;
  cursor: pointer;
}

.category-tab.active {
  color: #111;
}

.category-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 4px;
  background: #111;
}

/* List */
.category-list {
  max-width: 700px;
  margin: 0 auto;
}

.category-item {
  display: grid;
  grid-template-columns: 1fr 205px;
  gap: 34px;
  padding: 0 0 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid #111;
}

.category-item.is-hidden {
  display: none;
}

.item-category {
  display: block;
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 10px;
}

.category-item h2 {
  color: #111;
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.6px;
  margin: 0 0 14px;
}

.category-item p {
  color: #6f6f6f;
  font-size: 13px;
  line-height: 1.38;
  margin: 0 0 13px;
}

.item-author {
  color: #111;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Image */
.category-item-image {

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

.category-item-image img {
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.red-bg {
  background: #f24722;
}

.purple-bg {
  background: #c9b4ff;
}

/* Hover */
.category-item {
  cursor: pointer;
}

.category-item:hover h2 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .category-page-section {
    padding: 40px 0 60px;
  }

  .category-container {
    max-width: 720px;
  }

  .category-list {
    max-width: 100%;
    margin-left: 0;
  }

  .category-item {
    grid-template-columns: 1fr 170px;
  }
}

@media (max-width: 575px) {
  .category-page-section {
    padding: 32px 0 50px;
  }

  .category-header h1 {
    font-size: 38px;
  }

  .category-tabs {
    gap: 24px;
    overflow-x: auto;
  }

  .category-tab {
    white-space: nowrap;
    font-size: 15px;
  }

  .category-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-item-image {
    width: 100%;
    height: 220px;
  }

  .category-item h2 {
    font-size: 25px;
  }
}