/* ===== NELER YAPIYORUM SECTION ===== */
.what-i-do-section {
  background: #f5f5f5;
  padding: 50px 0 40px;
}

.section-title-main {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.what-i-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.wid-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ===== ÇALIŞMALARIMDAN KESİTLER ===== */
.highlights-section {
  background: #fff;
  padding: 60px 0;
}

.section-title-hl {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.hl-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.hl-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

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

.hl-img-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  height: 180px;
}

.hl-img-card.hl-wide {
  height: 200px;
}

.hl-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.hl-info-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hl-card-icon {
  width: 44px;
  height: 44px;
  background: #1a1a1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  font-family: 'Georgia', serif;
}

.hl-card-icon.hl-card-icon-blue {
  background: #003080;
}

.hl-card-icon.hl-card-icon-svg {
  padding: 10px;
}

.hl-card-icon.hl-card-icon-svg svg {
  width: 100%;
  height: 100%;
  stroke: white;
}

.hl-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.hl-card-text {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 4px;
}

.hl-card-text:last-child {
  margin-bottom: 0;
}

/* Responsive - Highlights */
@media (max-width: 768px) {
  .hl-row {
    grid-template-columns: 1fr;
  }

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

  .hl-img-card,
  .hl-img-card.hl-wide {
    height: 160px;
  }

  .section-title-hl {
    font-size: 24px;
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .highlights-section {
    padding: 40px 0;
  }

  .hl-grid {
    padding: 0 16px;
  }

  .hl-info-card {
    padding: 20px 16px;
  }
}

.wid-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,48,128,0.2);
  box-shadow: 0 12px 32px rgba(0,48,128,0.12);
}

.wid-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #003080 0%, #0050b3 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,48,128,0.25);
}

.wid-card-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.wid-card:hover .wid-card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(0,48,128,0.35);
}

.wid-card:hover .wid-card-icon svg {
  transform: scale(1.1);
}

.wid-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.wid-card-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}

.wid-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  flex: 1;
}

.wid-card-list li {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}

.wid-card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #003080;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.wid-card:hover .wid-card-list li::before {
  transform: translateX(3px);
}

.wid-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #003080;
  text-decoration: none;
  margin-top: auto;
  padding: 10px 18px;
  background: rgba(0,48,128,0.06);
  border-radius: 8px;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.wid-card-link:hover {
  gap: 10px;
  background: rgba(0,48,128,0.12);
  transform: translateX(2px);
}

/* Responsive - What I Do Section */
@media (max-width: 1024px) {
  .what-i-do-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 20px;
  }

  .wid-card {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .what-i-do-section {
    padding: 40px 0 32px;
  }

  .what-i-do-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 420px;
    padding: 0 16px;
  }

  .wid-card {
    padding: 24px 20px;
  }

  .section-title-main {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .section-title-main {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
/* Kompakt Slider ve Oklar */
.posts-compact-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.slider-arrow {
  background: #fff;
  color: #003080;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.slider-arrow:hover {
  background: #003080;
  color: #fff;
}
.compact-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.compact-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c6c3d1;
  display: inline-block;
  transition: background 0.2s;
}
.compact-slider-dots .dot.active {
  background: #003080;
}
.compact-card-img img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  background: #fff;
}
.compact-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.compact-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #e6e4ea;
  line-height: 1.4;
}
/* Son Paylaşımlar Kompakt Lacivert Kartlar */


/* Swiper Slide Kart Formatı (Vorga Can örneği gibi) */
.posts-section-compact {
  background: #f5f5f5;
  padding: 80px 0 80px 0;
}
.posts-compact-title {
  font-family: 'Inter', 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #003080;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.posts-compact-swiper {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 48px 40px;
  position: relative;
}

@media (max-width: 768px) {
  .posts-compact-swiper {
    padding: 0 20px 40px 20px;
  }

  .posts-section-compact {
    padding: 60px 0 60px 0;
  }

  .posts-compact-title {
    text-align: center;
  }
}
.posts-compact-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.compact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  width: 380px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 12px;
  border: 1px solid rgba(0,0,0,0.06);
}

.compact-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px);
  border-color: rgba(239, 85, 56, 0.3);
}
.compact-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8f8f8;
  position: relative;
}

.compact-card-img img,
.compact-card-img .vc_podcast_img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.compact-card:hover .compact-card-img img {
  transform: scale(1.08);
}
.compact-card-title,
.vc-blog-main-card-h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
  line-height: 1.4;
  letter-spacing: -0.4px;
}
.compact-card-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}
.compact-card-content {
  padding: 24px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  background: #fff;
}
.vc-podcast-icons, .vc_podcast_icons {
  display: flex;
  gap: 10px;
  margin-top: auto;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.vc-podcast-icons a, .vc_podcast_icons a {
  width: 36px;
  height: 36px;
  background: #f8f8f8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e8e8e8;
}

.vc-podcast-icons a:hover, .vc_podcast_icons a:hover {
  transform: translateY(-2px);
  background: #ef5538;
  border-color: #ef5538;
  box-shadow: 0 4px 12px rgba(239, 85, 56, 0.25);
}

.vc-podcast-icons a:hover img, .vc_podcast_icons a:hover img {
  filter: brightness(0) invert(1);
}

.vc-podcast-icons img, .vc_podcast_icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: filter 0.25s ease;
}
.posts-compact-swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 36px;
}

.posts-compact-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8d8d8;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 5px;
}

.posts-compact-swiper .swiper-pagination-bullet-active {
  background: #ef5538;
  width: 28px;
  border-radius: 5px;
}

.compact-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.compact-slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c6c3d1;
  display: inline-block;
  transition: background 0.2s;
  opacity: 1;
}

.compact-slider-dots .dot.active {
  background: #18151c;
}
.posts-compact-swiper .swiper-button-next,
.posts-compact-swiper .swiper-button-prev {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.posts-compact-swiper .swiper-button-next:after,
.posts-compact-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 900;
  color: inherit;
}

.posts-compact-swiper .swiper-button-next {
  right: 30px;
}

.posts-compact-swiper .swiper-button-prev {
  left: 30px;
}

.posts-compact-swiper .swiper-button-next:hover,
.posts-compact-swiper .swiper-button-prev:hover {
  background: #ef5538;
  color: #fff;
  border-color: #ef5538;
  box-shadow: 0 4px 16px rgba(239, 85, 56, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.posts-compact-swiper .swiper-button-next:hover:after,
.posts-compact-swiper .swiper-button-prev:hover:after {
  color: #fff;
}

.posts-compact-swiper .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-arrow {
  background: #fff;
  color: #18151c;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-left: 10px;
}

.slider-arrow:hover {
  background: #18151c;
  color: #fff;
}

/* Modal Styles for Podcast Player */
.podcast-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.podcast-modal.active {
  display: flex;
  opacity: 1;
}

.podcast-modal-content {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.podcast-modal.active .podcast-modal-content {
  transform: scale(1);
}

.podcast-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f8f8;
}

.podcast-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.podcast-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  font-size: 24px;
  color: #666;
}

.podcast-modal-close:hover {
  background: #e8e8e8;
  color: #1a1a1a;
}

.podcast-modal-body {
  padding: 0;
  overflow-y: auto;
  max-height: calc(85vh - 70px);
}

.podcast-modal-body iframe {
  width: 100%;
  border: none;
  display: block;
}
@media (max-width: 1200px) {
  .compact-card {
    width: 340px;
    min-height: 390px;
  }

  .compact-card-img {
    height: 200px;
  }

  .posts-compact-title {
    font-size: 42px;
    margin-bottom: 40px;
    padding: 0 30px;
  }

  .posts-compact-swiper .swiper-button-next,
  .posts-compact-swiper .swiper-button-prev {
    width: 46px;
    height: 46px;
  }

  .posts-compact-swiper .swiper-button-next {
    right: 20px;
  }

  .posts-compact-swiper .swiper-button-prev {
    left: 20px;
  }
}

@media (max-width: 900px) {
  .compact-card {
    width: 88vw;
    min-width: 0;
    max-width: 400px;
    min-height: 380px;
  }

  .compact-card-img {
    height: 180px;
  }

  .posts-compact-title {
    font-size: 36px;
    letter-spacing: -0.8px;
    padding: 0 20px;
  }

  .compact-card-title {
    font-size: 19px;
  }

  .compact-card-desc {
    font-size: 14px;
  }

  .posts-compact-swiper .swiper-button-next,
  .posts-compact-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .posts-compact-swiper .swiper-button-next {
    right: 12px;
  }

  .posts-compact-swiper .swiper-button-prev {
    left: 12px;
  }

  .posts-compact-swiper .swiper-button-next:after,
  .posts-compact-swiper .swiper-button-prev:after {
    font-size: 16px;
  }

  .vc-podcast-icons a, .vc_podcast_icons a {
    width: 32px;
    height: 32px;
  }

  .vc-podcast-icons img, .vc_podcast_icons img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 1200px) {
  .posts-compact-row {
    gap: 16px;
  }
  .compact-card {
    width: 320px;
    min-height: 340px;
  }
}
@media (max-width: 900px) {
  .posts-compact-row {
    flex-direction: column;
    align-items: center;
  }
  .compact-card {
    width: 90vw;
    min-width: 0;
    max-width: 400px;
  }
}
.compact-card-content {
  padding: 18px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.compact-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.compact-card-desc {
  font-size: 14px;
  color: #e6e4ea;
  line-height: 1.4;
}
/* Son Paylaşımlar (YouTube tarzı) */
.posts-section-youtube {
  background: #e6e4ea;
  padding: 60px 0 40px 0;
}
.posts-youtube-title {
  font-family: 'Inter', serif;
  font-size: 64px;
  font-weight: 800;
  color: #18151c;
  text-align: center;
  margin-bottom: 32px;
}
.posts-youtube-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
}
.youtube-card {
  background: #18151c;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  width: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.youtube-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0 0 0 0;
  display: block;
}
.youtube-card-content {
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.youtube-card-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.1;
}
.youtube-card-btn {
  background: none;
  border: none;
  margin-top: auto;
  align-self: flex-start;
  cursor: pointer;
  color: #fff;
  padding: 0;
  transition: color 0.2s;
}
.youtube-card-btn svg {
  display: block;
  fill: #fff;
}
.youtube-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.youtube-slider-controls .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c6c3d1;
  display: inline-block;
  margin: 0 2px;
}
.youtube-slider-controls .dot.active {
  background: #18151c;
}
.youtube-slider-controls .slider-btn {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #18151c;
  margin-left: 4px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.2s;
}
.youtube-slider-controls .slider-btn:hover {
  background: #f0f0f0;
}

/* ===== BASE STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Content links - navy blue style */
p a,
li a,
.bio-content a,
.resource-compact-list a,
.pub-venue a,
article a {
  color: #003080;
  font-weight: 600;
  transition: color 0.2s;
}

p a:hover,
li a:hover,
.bio-content a:hover,
.resource-compact-list a:hover,
.pub-venue a:hover,
article a:hover {
  color: #001a40;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== AKADEMIK PAGE - FULL WIDTH ===== */
.academic-page .container {
  max-width: none;
  padding: 0 60px;
}

.academic-page .about-layout {
  gap: 40px;
}

.academic-page .about-sidebar {
  width: 200px;
  flex-shrink: 0;
}

.academic-page .about-main {
  flex: 1;
  min-width: 0;
  max-width: calc(100% - 240px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 245, 245, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
}

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

.logo {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 3px;
  color: #003080;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #003080;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: #0050b3;
  opacity: 0.85;
}

.dropdown-icon {
  font-size: 10px;
  opacity: 0.6;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: #003080;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #002060;
}

.btn-substack {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  text-decoration: none;
}

.btn-substack:hover {
  background: #ff6719;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: auto;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.hero-content {
  flex: 0 0 40%;
  max-width: 420px;
  z-index: 2;
  padding-bottom: 160px;
}

.hero-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 28px;
}

.hero-greeting {
  color: #003080;
  font-weight: 600;
}

.btn-hero {
  padding: 14px 28px;
  font-size: 15px;
}

.hero-image {
  flex: 0 0 55%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  margin-bottom: -5px;
}

.hero-image img {
  max-height: 75vh;
  width: auto;
  object-fit: contain;
}

/* ===== LOGO BAR ===== */
.logo-bar {
  background: #003080;
  padding: 40px 0;
  overflow: hidden;
}

.logo-bar-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  font-weight: 500;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
}

.logo-slider-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: slide 25s linear infinite;
  width: max-content;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-slider:hover .logo-slider-track {
  animation-play-state: paused;
}

.partner-logo {
  height: 54px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo-aselsan {
  height: 120px;
}

.partner-logo-fil {
  height: 90px;
}

.partner-logo-hamdi {
  height: 75px;
}

.partner-logo-ankara {
  height: 75px;
}

.partner-logo-deep {
  height: 70px;
}

.partner-logo-anlam {
  height: 65px;
  filter: brightness(0) invert(1);
}

/* ===== POSTS SECTION ===== */
.posts-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #003080;

.section-title-blue {
  font-size: 26px;
  color: #003080;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
/* Yeni Son Paylaşımlar kartları */
.post-card-podcast .post-card-image img {
  border-radius: 12px;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  display: block;
}
.post-card-substack .post-card-image img {
  border-radius: 12px;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  display: block;
}
.post-card-eeml .post-card-image img {
  border-radius: 12px;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  display: block;
}
.post-card-podcast .post-title,
.post-card-substack .post-title,
.post-card-eeml .post-title {
  font-size: 16px;
  color: #003080;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}
.post-card-substack .post-desc,
.post-card-eeml .post-desc {
  font-size: 14px;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 4px;
}
}

.posts-slider {
  position: relative;
}

.posts-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}

.posts-track::-webkit-scrollbar {
  display: none;
}

.post-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  color: #fff;
}

.post-card-dark {
  background: #1a1a1a;
}

.post-card-yellow {
  background: #f5c518;
  color: #1a1a1a;
}

.post-card-red {
  background: #e63946;
}

.post-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  line-height: 1.3;
  color: #fff;
  z-index: 2;
}

.post-badge-top {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 16px;
  font-weight: 700;
  z-index: 2;
}

.post-source {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  border-radius: 4px;
}

.post-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 11px;
  line-height: 1.4;
  z-index: 2;
}

.post-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-quote {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.post-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.2s;
}

.post-card-yellow .play-btn {
  background: rgba(0, 0, 0, 0.1);
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: #1a1a1a;
}

.slider-arrows {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #1a1a1a;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}

.slider-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

.footer {
  background: #003080;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-newsletter {
  flex: 0 0 400px;
}

.footer-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.input-field {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  flex: 1;
}

.input-field::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
  flex-shrink: 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 2px;
  accent-color: #003080;
}

.checkbox-label a {
  color: #003080;
  text-decoration: underline;
}

/* Footer Links */
.footer-links {
  display: flex;
  gap: 60px;
}

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

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

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

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.2s;
}

.social-icon:hover {
  background: #fff;
  color: #1a1a1a;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    flex: none;
    max-width: 100%;
  }
  
  .hero-image {
    flex: none;
    justify-content: center;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .highlight-large {
    grid-column: span 2;
  }
  
  .footer-inner {
    flex-direction: column;
  }
  
  .footer-newsletter {
    flex: none;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }
  
  .hero {
    padding: 140px 0 60px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .post-card {
    flex: 0 0 260px;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .highlight-large,
  .highlight-img-large {
    grid-column: span 1;
  }
  
  .logo-bar-logos {
    gap: 30px;
  }
  
  .partner-logo {
    height: 22px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-page-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 80px;
}

.sidebar {
  width: 320px;
  flex-shrink: 0;
  padding: 60px 40px;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  background: #f5f5f5;
}

.sidebar-name {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.sidebar-tagline {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.5;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-nav a:hover {
  color: #003080;
}

.sidebar-nav a.active {
  color: #003080;
}

.main-content {
  flex: 1;
  background: #fff;
  padding: 60px 80px;
}

.about-section {
  margin-bottom: 60px;
}

.about-section-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.about-text:last-child {
  margin-bottom: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e0e0e0;
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #003080;
  border: 2px solid #fff;
}

.timeline-date {
  font-size: 12px;
  font-weight: 600;
  color: #003080;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.timeline-subtitle {
  font-size: 14px;
  color: #666;
}

/* Newsroom Grid */
.newsroom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.news-card {
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-card-image {
  height: 140px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-body {
  padding: 16px;
}

.news-card-source {
  font-size: 11px;
  font-weight: 600;
  color: #003080;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.news-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .about-page-layout {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    position: relative;
    top: 0;
    height: auto;
    padding: 40px 24px;
  }
  
  .main-content {
    padding: 40px 24px;
  }
  
  .newsroom-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PODCAST PAGE STYLES ===== */
.podcast-page {
  padding: 100px 0 60px;
  background: #f5f5f5;
  min-height: 100vh;
}

.podcast-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  gap: 40px;
}

.podcast-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.podcast-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  max-width: 650px;
  line-height: 1.5;
}

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

.podcast-tag {
  padding: 5px 12px;
  border: 1px solid #ddd;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 500;
  color: #666;
  background: #fff;
  transition: all 0.2s;
}

.podcast-tag:hover,
.podcast-tag.active {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e0e0e0; transition: all 0.3s;
}

.search-input {
  padding: 10px 14px;
  border: none;
  font-size: 14px;
  width: 220px;
  outline: none;
}

.search-btn {
  padding: 10px 16px;
  background: #003080; transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 14px; color: #fff;
}

/* Podcast Grid - Compact Cards */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.podcast-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.podcast-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.podcast-card-image {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #e0e0e0;
  border-radius: 8px 8px 0 0;
}

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

.podcast-card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.podcast-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.podcast-card-tag {
  font-size: 9px;
  font-weight: 600;
  color: #003080;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(0, 48, 128, 0.08);
  padding: 3px 7px;
  border-radius: 4px;
}

.podcast-card-date {
  font-size: 10px;
  color: #666;
  font-weight: 500;
}

.podcast-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-card-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin: 0 0 10px 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-card-links {
  display: flex;
  gap: 6px;
  padding-top: 8px;
  margin-top: auto;
}

.podcast-card-links a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  transition: all 0.2s;
}

.podcast-card-links a:hover {
  background: #003080;
  transform: scale(1.1);
}

.podcast-card-links a:hover img {
  filter: brightness(0) invert(1);
}

.podcast-card-links a img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  transition: filter 0.2s;
}

/* Load More Button */
.load-more {
  text-align: center;
  padding: 16px 0;
}

.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  border: 1.5px solid #1a1a1a;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
}

/* Podcast Page Responsive */
@media (max-width: 1024px) {
  .podcast-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .podcast-header {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .podcast-page {
    padding: 90px 0 50px;
  }
  .podcast-header h1 {
    font-size: 28px;
  }
  .podcast-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .search-input {
    width: 180px;
  }
}

/* ===== HAKKINDA PAGE - VORGACAN STYLE ===== */
.about-page {
  padding-top: 80px;
  background: #f5f5f5;
  min-height: 100vh;
}

.about-layout {
  display: flex;
  gap: 60px;
  padding: 60px 0;
}

.about-sidebar {
  width: 160px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.about-name {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-style: italic;
}

.about-tagline {
  font-size: 13px;
  color: #666;
  margin-bottom: 32px;
}

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

.about-nav-link {
  font-size: 14px;
  color: #666;
  transition: color 0.2s;
}

.about-nav-link:hover,
.about-nav-link.active {
  color: #1a1a1a;
}

.about-main {
  flex: 1;
  max-width: none;
}

.about-section {
  margin-bottom: 60px;
}

.about-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-section p strong {
  color: #1a1a1a;
}

.section-heading {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

/* Timeline - Vorgacan Style */
.timeline {
  position: relative;
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-date {
  width: 100px;
  flex-shrink: 0;
  font-size: 13px;
  color: #999;
}

.timeline-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Newsroom List - Vorgacan Style */
.newsroom-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.newsroom-item {
  display: flex;
  gap: 20px;
  padding: 0;
  transition: opacity 0.2s;
}

.newsroom-item:hover {
  opacity: 0.8;
}

.newsroom-image {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #e0e0e0;
}

.newsroom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsroom-content {
  flex: 1;
}

.newsroom-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.newsroom-date {
  font-size: 11px;
  color: #999;
  display: block;
  margin-bottom: 8px;
}

.newsroom-content p {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

.newsroom-more {
  margin-top: 24px;
}

.newsroom-more a {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
}

.newsroom-more a:hover {
  color: #003080;
}

/* Footer Dark */
.footer.dark {
  background: #1a1a1a;
  color: #fff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-newsletter h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-newsletter p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  max-width: 320px;
}

.newsletter-form-inline {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.newsletter-form-inline input {
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
}

.newsletter-form-inline input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.newsletter-legal a {
  color: #e63946;
  text-decoration: underline;
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .about-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-sidebar {
    width: 100%;
    position: relative;
    top: 0;
  }
  
  .about-main {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding-top: 70px;
  }
  
  .about-layout {
    padding: 40px 0;
  }
  
  .about-name {
    font-size: 24px;
  }
  
  .section-heading {
    font-size: 26px;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: 8px;
  }
  
  .timeline-date {
    width: auto;
  }
  
  .newsroom-item {
    flex-direction: column;
  }
  
  .newsroom-image {
    width: 100%;
    height: 160px;
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .newsletter-form-inline {
    flex-direction: column;
  }
}

/* ===== YAZILAR PAGE STYLES ===== */
.yazilar-page {
  padding: 100px 0 60px;
  background: #f5f5f5;
  min-height: 100vh;
}

.yazilar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.yazilar-header h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-style: italic;
  letter-spacing: -0.5px;
}

.yazilar-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  max-width: 380px;
  line-height: 1.6;
}

.yazilar-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.yazi-tag {
  padding: 8px 16px;
  border: 1.5px solid #1a1a1a;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
}

.yazi-tag:hover,
.yazi-tag.active {
  background: #1a1a1a;
  color: #fff;
}

/* Yazılar Grid */
.yazilar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.yazi-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.yazi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.yazi-card-image {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.yazi-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.yazi-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 18px;
  background: #1a365d;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 24px;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

.yazi-badge.badge-deneme {
  background: #2d3748;
}

.yazi-badge.badge-makale {
  background: #234e70;
}

.yazi-card-body {
  padding: 24px 24px 28px;
}

.yazi-date {
  font-size: 11px;
  color: #888;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.yazi-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.45;
  margin: 0 0 14px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yazi-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Yazılar Page Responsive */
@media (max-width: 1024px) {
  .yazilar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .yazilar-header {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .yazilar-page {
    padding: 90px 0 50px;
  }
  .yazilar-header h1 {
    font-size: 32px;
  }
  .yazilar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .yazilar-desc {
    max-width: 100%;
  }
  .yazi-card-body {
    padding: 20px;
  }
  .yazi-title {
    font-size: 16px;
  }
}

/* ========================================
   Article Detail Page Styles
   ======================================== */

.article-page {
  padding: 120px 0 80px;
  background: #fafafa;
  min-height: 100vh;
}

.article-page .container {
  max-width: 1400px;
  padding: 0 60px;
}

.article-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
}

.article-header-content {
  padding-right: 20px;
}

.article-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.article-separator {
  color: #ccc;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.article-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.article-author-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.article-share {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 12px;
  color: #666;
  text-decoration: none;
  transition: all 0.2s;
}

.share-btn:hover {
  border-color: #1a365d;
  color: #1a365d;
}

.article-header-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.article-header-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article Content */
.article-content {
  max-width: 1080px;
  margin: 0 auto 60px;
  background: #fff;
  padding: 60px 80px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.article-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}

.article-content .article-lead {
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 32px;
}

.article-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 48px 0 20px;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 36px 0 16px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.article-content li {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

.article-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: #f8f9fa;
  border-left: 4px solid #1a365d;
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  font-style: italic;
  color: #555;
  line-height: 1.7;
}

.article-content hr {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 48px 0;
}

.article-figure {
  margin: 40px -40px;
}

.article-figure img {
  width: 100%;
  border-radius: 12px;
}

.article-figure figcaption {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 12px;
  font-style: italic;
}

.article-content strong {
  font-weight: 600;
  color: #1a1a1a;
}

.article-content em {
  color: #666;
}

.article-content a {
  color: #1a365d;
  text-decoration: underline;
  text-decoration-color: rgba(26, 54, 93, 0.3);
  transition: text-decoration-color 0.2s;
}

.article-content a:hover {
  text-decoration-color: #1a365d;
}

/* Article Back Button */
.article-back {
  text-align: center;
  margin-bottom: 40px;
}

/* Article Page Responsive */
@media (max-width: 1024px) {
  .article-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .article-header-content {
    padding-right: 0;
    order: 1;
  }
  
  .article-header-image {
    order: 0;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .article-page {
    padding: 100px 0 60px;
  }
  
  .article-title {
    font-size: 28px;
  }
  
  .article-content {
    padding: 40px 24px;
    margin: 0 -16px 40px;
    border-radius: 0;
  }
  
  .article-content p,
  .article-content li {
    font-size: 16px;
  }
  
  .article-content .article-lead {
    font-size: 18px;
  }
  
  .article-content h2 {
    font-size: 22px;
  }
  
  .article-figure {
    margin: 32px -24px;
  }
}

/* ========================================
   Contact Page Styles
   ======================================== */

.contact-page {
  padding: 120px 0 80px;
  background: #fafafa;
  min-height: 100vh;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.contact-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  background: transparent;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
  color: #999;
}

.form-input:focus {
  outline: none;
  border-color: #1a365d;
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-checkboxes {
  margin: 24px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #1a365d;
  cursor: pointer;
}

.checkbox-text {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.checkbox-text a {
  color: #e85a3c;
  text-decoration: underline;
}

.checkbox-text a:hover {
  color: #d04a2c;
}

.btn-submit-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #003080;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-submit-contact:hover {
  background: #002060;
  transform: translateY(-1px);
}

.contact-link {
  color: #003080;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #0050b3;
  text-decoration: underline;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-page {
    padding: 100px 0 60px;
  }
  
  .contact-header h1 {
    font-size: 32px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Legal Pages Styles
   ======================================== */

.legal-page {
  padding: 120px 0 80px;
  background: #fafafa;
  min-height: 100vh;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 32px 0;
  line-height: 1.2;
}

.legal-intro {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8e8e8;
}

.legal-intro p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.legal-intro a {
  color: #1a365d;
  text-decoration: underline;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 40px 0 16px;
}

.legal-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 24px 0;
  padding-left: 20px;
}

.legal-content li {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-content li strong {
  color: #1a1a1a;
}

.legal-content a {
  color: #1a365d;
  text-decoration: underline;
  transition: color 0.2s;
}

.legal-content a:hover {
  color: #2d4a7c;
}

.legal-date {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
  font-size: 14px;
  color: #888;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding: 100px 0 60px;
  }
  
  .legal-content h1 {
    font-size: 32px;
  }
  
  .legal-content h2 {
    font-size: 18px;
  }
}


/* Bio Section */
/* Section Subheading - Minimal */
.section-subheading {
  font-size: 14px;
  color: #888;
  margin: -4px 0 36px 0;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Resources Grid - Ultra Minimal */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.resource-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
}

.resource-card:hover {
  border-color: #003080;
  box-shadow: 0 4px 20px rgba(0, 48, 128, 0.08);
  transform: translateY(-2px);
}

.resource-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.resource-icon {
  width: 40px;
  height: 40px;
  background: #003080;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
  background: #0050c8;
  transform: translateY(-2px);
}

.resource-badge {
  background: #f5f5f5;
  color: #666;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}

.resource-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.resource-card-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.resource-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-card-list li {
  padding: 10px 0;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s;
}

.resource-card-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.resource-card-list li:hover {
  color: #1a1a1a;
}

.resource-card-list a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.2s;
}

.resource-card-list a:hover {
  color: #003080;
}

.resource-link-text {
  flex: 1;
}

.external-icon {
  flex-shrink: 0;
  opacity: 0;
  transition: all 0.2s;
  color: #003080;
}

.resource-card-list a:hover .external-icon {
  opacity: 1;
}

@media (max-width: 900px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .resource-card {
    padding: 24px 20px;
  }
  
  .resource-icon {
    width: 36px;
    height: 36px;
  }
  
  .section-subheading {
    font-size: 13px;
    margin: -2px 0 24px 0;
  }
}


.bio-section {
  margin-top: 64px;
}

.bio-content {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  margin-bottom: 32px;
}

.bio-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0 0 16px 0;
}

.bio-content p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #003080;
}

.bio-content strong {
  color: #1a1a1a;
}

/* Honors Compact */
.honors-compact {
  background: #f9f9f9;
  padding: 28px;
  border-radius: 12px;
}

.honors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.honor-badge {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.honor-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.honor-badge img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}

.honor-badge span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  line-height: 1.4;
}

/* Education Compact */
.education-compact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.education-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}

.education-card:hover {
  border-color: #003080;
  box-shadow: 0 4px 12px rgba(0,48,128,0.08);
}

.edu-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.edu-header img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.edu-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.edu-institution {
  font-size: 15px;
  font-weight: 600;
  color: #003080;
  margin: 0 0 2px 0;
}

.edu-period {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.edu-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  padding-left: 80px;
}

/* Publications List - Minimal & Sophisticated */
.publications-list {
  margin-bottom: 32px;
}

.pub-year-group {
  margin-bottom: 48px;
}

.pub-year {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
  padding: 0;
  border: none;
}

.pub-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  margin-bottom: 0;
  background: transparent;
  border-radius: 0;
  border-left: none;
  border-bottom: 1px solid #eee;
  transition: all 0.2s;
}

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

.pub-item:hover {
  background: transparent;
  border-left-color: transparent;
  box-shadow: none;
}

.pub-item:hover .pub-title {
  color: #003080;
}

.pub-item.spotlight {
  background: transparent;
  border-left-color: transparent;
}

.pub-item.spotlight .pub-title {
  color: #1a1a1a;
}

.pub-main {
  flex: 1;
}

.pub-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0 0 6px 0;
  transition: color 0.2s;
}

.pub-authors {
  font-size: 13px;
  color: #888;
  margin: 0 0 4px 0;
  font-weight: 400;
}

.pub-venue {
  font-size: 13px;
  color: #555;
  font-weight: 500;
  margin: 0;
}

.spotlight-badge {
  display: inline-block;
  background: transparent;
  color: #ff6b00;
  padding: 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-left: 8px;
}

.pub-actions {
  flex-shrink: 0;
}

.pub-btn {
  display: inline-block;
  padding: 6px 14px;
  background: transparent;
  color: #003080;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid #003080;
  transition: all 0.2s;
}

.pub-btn:hover {
  background: #003080;
  color: #fff;
  transform: none;
  box-shadow: none;
}

.view-all-link {
  text-align: left;
  margin-top: 32px;
  padding-top: 0;
  border-top: none;
}

/* Talks Modern */
.talks-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.talk-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
  height: 100%;
}

.talk-card:hover {
  border-color: #003080;
  box-shadow: 0 2px 8px rgba(0,48,128,0.08);
  transform: translateY(-2px);
}

.talk-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f5f5f5;
}

.talk-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.talk-card:hover .talk-img img {
  transform: scale(1.03);
}

.talk-info {
  padding: 14px;
}

.talk-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.talk-event {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Responsive - Academic Page */
@media (max-width: 1024px) {
  .honors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .talks-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pub-item {
    flex-direction: column;
  }
  
  .pub-actions {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .honors-grid {
    grid-template-columns: 1fr;
  }
  
  .talks-modern {
    grid-template-columns: 1fr;
  }
  
  .edu-description {
    padding-left: 0;
  }
  
  .bio-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .podcast-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.search-form:focus-within {
  border-color: #003080;
  box-shadow: 0 0 0 3px rgba(0, 48, 128, 0.1);
}


.search-btn:hover {
  background: #002060;
  transform: scale(1.02);
}

.search-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}


@media (max-width: 480px) {
  .search-form {
    width: 100%;
  }
  
  .search-input {
    flex: 1;
    width: auto;
  }
}



@media (max-width: 600px) {
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .resource-card {
    padding: 24px;
  }
  
  .resource-icon {
    width: 56px;
    height: 56px;
  }
  
  .section-subheading {
    font-size: 14px;
    margin: -6px 0 24px 0;
  }
}

