.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #2b2b2b;
}

.site-header {
  background: #e6e1db;
  border-bottom: 1px solid #d5d0c9;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.branding {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.logo-mark {
  display: flex;
  justify-content: center;
}

.logo-image {
  width: 30%;
  max-width: 1800px;
  height: auto;
  display: block;
}

.brand-title {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #4b4b4b;
  display: none;
}

.site-nav {
  background: #ffffff;
  border-top: 1px solid #e0dbd5;
  border-bottom: 1px solid #e0dbd5;
}

.nav-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-list a {
  color: inherit;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-list a.active {
  border-bottom-color: #9b7f4e;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  width: 100%;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 16px;
  color: #4b4b4b;
}

.top-picks {
  margin-bottom: 120px !important;
  position: relative;
}
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d5d0c9;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: #9b7f4e;
  transform: scale(1.3);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  color: inherit;
  height: 420px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  border-radius: 4px 4px 0 0;
  transition: transform 0.4s ease;
}

.post-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-width: 0;
  gap: 0;
}

.post-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.post-date {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b8b8b;
}

.post-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #2b2b2b;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 44px;
}

.post-card p {
  margin: 2px 0 10px;
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  word-break: break-word;
  flex: 1;
  min-height: 88px;
  max-height: 88px;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.post-card:hover .post-image {
  transform: scale(1.05);
}

.post-read {
  margin-top: auto;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, #9b7f4e 0%, #846944 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(155, 127, 78, 0.2);
}

.post-read:hover {
  background: linear-gradient(135deg, #846944 0%, #6d5639 100%);
  box-shadow: 0 4px 12px rgba(155, 127, 78, 0.3);
  transform: translateY(-1px);
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #e3ded7;
  border-radius: 6px;
  padding: 12px;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-row-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.post-row-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  min-height: 140px;
}

.post-row-content h3 {
  margin: 6px 0;
  font-size: 18px;
}

.post-row-content p {
  margin: 0;
  color: #5a5a5a;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.post-row-date {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b8b8b;
}

.post-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.mini-card {
  background: #ffffff;
  border: none;
  border-radius: 6px;
  overflow: hidden;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 420px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  border-radius: 6px 6px 0 0;
  transition: transform 0.4s ease;
}

.mini-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px;
}

.mini-date {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b8b8b;
}

.mini-card h3 {
  margin: 0 0 2px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #2b2b2b;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 44px;
}

.mini-card p {
  margin: 2px 0 12px;
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  word-break: break-word;
  flex: 1;
  min-height: 88px;
  max-height: 88px;
}

.mini-read-more {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, #9b7f4e 0%, #846944 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(155, 127, 78, 0.2);
  text-decoration: none;
}

.mini-read-more:hover {
  background: linear-gradient(135deg, #846944 0%, #6d5639 100%);
  box-shadow: 0 4px 12px rgba(155, 127, 78, 0.3);
  transform: translateY(-1px);
  color: #ffffff;
}

.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.mini-card:hover .mini-image {
  transform: scale(1.05);
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.split-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 20px;
  color: inherit;
  align-items: stretch;
  height: 240px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.4s ease;
}

.split-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}

.split-body h3 {
  margin: 0 0 2px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #2b2b2b;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.split-body p {
  margin: 0;
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  word-break: break-word;
  flex: 1;
  min-height: 46px;
  max-height: 46px;
  white-space: normal;
}

.split-body .mini-read-more {
  margin-top: auto;
  align-self: flex-end; /* sağ alt */
}

.split-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.split-card:hover .split-image img {
  transform: scale(1.05);
}

.slider-shell {
  position: relative;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  align-items: stretch;
}

.slider-track.is-animated {
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slider-item {
  flex: 0 0 calc(100% / 3);
  padding: 0 9px;
  box-sizing: border-box;
  display: flex;
}

.slider-item .media-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.slider-item .media-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.pill {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f0ece7;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6a5a46;
  width: fit-content;
}

.slider-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e3ded7;
  background: #ffffff;
  color: #6a5a46;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.slider-arrow-left {
  left: -8px;
}

.slider-arrow-right {
  right: -8px;
}

.slider-arrow:hover {
  border-color: #c9b79b;
}

.media-card,
.text-card,
.wide-card {
  background: #ffffff;
  border: 1px solid #e3ded7;
  padding: 18px;
  border-radius: 6px;
  min-height: 140px;
}

.media-card h3,
.text-card h3 {
  margin: 12px 0 6px;
  font-size: 16px;
}

.media-card p,
.text-card p,
.wide-card p {
  margin: 0;
  color: #5a5a5a;
  font-size: 14px;
}

.media-placeholder {
  height: 120px;
  background: #f0ece7;
  border-radius: 4px;
}

.media-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.slider-link {
  display: block;
  color: inherit;
}

.slider-read-more {
  margin-top: auto;
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #9b7f4e 0%, #846944 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(155, 127, 78, 0.2);
}

.slider-read-more:hover {
  background: linear-gradient(135deg, #846944 0%, #6d5639 100%);
  box-shadow: 0 4px 12px rgba(155, 127, 78, 0.3);
  transform: translateY(-1px);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.section-block {
  margin-bottom: 56px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e3ded7;
}

.section-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #2b2b2b;
  letter-spacing: -0.5px;
}

.section-link {
  font-size: 13px;
  color: #9b7f4e;
}

.section-action {
  font-size: 13px;
  color: #9b7f4e;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-action::after {
  content: "→";
  font-size: 12px;
  line-height: 1;
}


.wide-card {
  min-height: 120px;
}

.podcast-embed {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.podcast-embed iframe {
  border-radius: 12px;
  display: block;
}

.side-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
   padding-right: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}


/* Tüm tarayıcılarda scrollbar'ı gizle ama işlevini koru */
::-webkit-scrollbar {
  display: none !important;
}

html, body, * {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.side-block {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.side-block:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.side-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
  color: #6a5a46;
  font-weight: 600;
  display: block;
}

.side-list {
  margin: 0;
  padding-left: 18px;
  color: #5a5a5a;
  font-size: 14px;
  
}

.side-list li {
  margin-bottom: 8px;
}

.side-list a {
  color: inherit;
  text-decoration: none;
}

.side-list a:hover {
  color: #9b7f4e;
  text-decoration: underline;
}

.twitter-embed {
  border: 1px solid #e3ded7;
  border-radius: 12px;
  padding: 14px;
  background: #faf9f7;
  color: #5a5a5a;
  font-size: 14px;
}

.twitter-embed p {
  margin: 0 0 10px;
}

.twitter-embed a {
  color: #9b7f4e;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.twitter-posts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.twitter-post {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e3ded7;
  text-decoration: none;
  color: inherit;
}

.twitter-post-text {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.twitter-post-date {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b8b8b;
}

.twitter-profile {
  color: #9b7f4e;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.contact-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #5a5a5a;
}

.contact-list li {
  margin-bottom: 8px;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover {
  color: #9b7f4e;
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6a5a46;
}

.form-field input,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e3ded7;
  background: #faf9f7;
  font-size: 14px;
  color: #2b2b2b;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #9b7f4e;
  background: #ffffff;
}

.contact-submit {
  align-self: flex-start;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #9b7f4e 0%, #846944 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.search-box {
  display: flex;
  gap: 8px;
}

.search-box input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  border: 2px solid #d9d2c9;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #faf9f7;
  color: #2b2b2b;
}

.search-box input::placeholder {
  color: #9a8f83;
}

.search-box input:focus {
  outline: none;
  border-color: #9b7f4e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(155, 127, 78, 0.1);
}

.search-box button {
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #9b7f4e 0%, #846944 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(155, 127, 78, 0.2);
}

.search-box button:hover {
  background: linear-gradient(135deg, #846944 0%, #6d5639 100%);
  box-shadow: 0 4px 12px rgba(155, 127, 78, 0.3);
  transform: translateY(-1px);
}

.site-footer {
  margin-top: auto;
  background: #e6e1db;
  color: #4b4b4b;
  border-top: 1px solid #d5d0c9;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-mega {
  background: #f6f4f1;
  color: #4b4b4b;
  border-top: 2px solid #d5d0c9;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  padding: 56px 24px 40px;
}

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

.footer-brand {
  gap: 16px;
}



.footer-logo {
  max-width: 180px;
  height: auto;
  display: block;
  filter: brightness(0.9);
}

.footer-col h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: #6a5a46;
  font-weight: 600;
}

.footer-address p {
  margin: 0;
  line-height: 1.7;
}

.footer-link {
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 14px;
}

.footer-link:hover {
  color: #9b7f4e;
}

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

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5a5a5a;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 6px 0;
  font-size: 14px;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
  color: #8b7a65;
}

.footer-social-link:hover {
  color: #9b7f4e;
}

.footer-social-link:hover svg {
  color: #9b7f4e;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #d5d0c9;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6a5a46;
  background: #e6e1db;
  
}

.detail-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-hero {
  background: #e8e2da;
  border: 1px solid #e3ded7;
  border-radius: 6px;
  padding: 18px;
}

.detail-hero-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.detail-head {
  text-align: center;
}

.detail-category {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: #7a7a7a;
}

.detail-head h1 {
  margin: 10px 0 6px;
  font-size: 30px;
}

.detail-date {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b8b8b;
}

.detail-summary {
  margin: 0;
  font-size: 16px;
  color: #4b4b4b;
  text-align: left;
  height: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.detail-body {
  font-size: 15px;
  color: #3c3c3c;
  line-height: 1.7;
}

.detail-body p {
  margin: 0 0 12px;
}

.detail-categories {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e3ded7;
}

.detail-category-label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: 10px;
}

.detail-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-category-pill {
  background: #f0ece7;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6a5a46;
  display: inline-flex;
  align-items: center;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
}

.detail-back {
  color: #9b7f4e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.podcast-featured {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
}

.podcast-cover img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.podcast-info h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.podcast-meta {
  color: #8b8b8b;
  margin-bottom: 10px;
}

.podcast-cta {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f0ece7;
  color: #6a5a46;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.podcast-track-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.podcast-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #e3ded7;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.podcast-track-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.podcast-track .podcast-embed {
  padding: 0;
  border-radius: 16px;
  box-shadow: none;
  overflow: hidden;
}

.podcast-track .podcast-embed iframe {
  width: 100%;
  height: 232px;
  border-radius: 0;
}

.podcast-slider .slider-dots {
  position: static;
  margin-top: 14px;
}

.podcast-detail-cta {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(155, 127, 78, 0.25);
  background: rgba(255, 255, 255, 0.85);
  color: #6a5a46;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.podcast-detail-cta:hover {
  background: #9b7f4e;
  color: #ffffff;
  border-color: #9b7f4e;
}

.podcast-slider .slider-item {
  flex: 0 0 100% !important;
  max-width: 100%;
  width: 100%;
  padding: 0;
  min-height: auto !important;
  display: none;
}

.podcast-slider .slider-shell,
.podcast-slider .slider-viewport,
.podcast-slider .slider-track,
.podcast-slider .podcast-track {
  width: 100%;
}

.podcast-slider .slider-track {
  width: 100% !important;
  transform: translateX(0) !important;
}

.podcast-slider .slider-item.is-active {
  display: flex;
  animation: podcastFadeIn 0.35s ease;
}

@keyframes podcastFadeIn {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 1;
  }
}

.podcast-track-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.podcast-track-body h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.podcast-track-meta {
  color: #8b8b8b;
  font-size: 13px;
  margin-bottom: 4px;
}

.podcast-track-album {
  color: #5a5a5a;
  font-size: 14px;
  margin-bottom: 8px;
}

.podcast-description {
  background: transparent;
  border: none;
  padding: 12px 0 0;
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.podcast-description p {
  margin: 0;
}

.podcast-detail-page .podcast-embed {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .podcast-track .podcast-embed iframe {
    height: 232px;
  }
}

@media (max-width: 900px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .post-row {
    grid-template-columns: 1fr;
  }

  .mini-list {
    grid-template-columns: 1fr;
  }

  .split-cards {
    grid-template-columns: 1fr;
  }

  .slider-item {
    flex: 0 0 100%;
    padding: 0;
  }

  .slider-arrow-left {
    left: 6px;
  }

  .slider-arrow-right {
    right: 6px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .side-column {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}
