/*
 * Değerlenir — video-galeri page styles
 * Loaded only by video-galeri.html. Shared header rules live in degerle-header.css.
 */

.degerle-video-gallery-page {
  background: #ffffff;
  color: #061541;
}

.degerle-video-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 28px 0 42px;
  color: #606b7d;
  font-size: 13px;
  font-weight: 800;
}

.degerle-video-breadcrumb a,
.degerle-video-breadcrumb strong {
  color: #061541;
}

.degerle-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 28px;
  align-items: start;
  padding-bottom: 70px;
}

.degerle-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 22px;
}

.degerle-gallery-card {
  overflow: hidden;
  border: 1px solid rgba(6, 21, 65, 0.08);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(6, 21, 65, 0.07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.degerle-gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(6, 21, 65, 0.12);
}

.degerle-gallery-media {
  position: relative;
  display: block;
  height: 170px;
  overflow: hidden;
  background: #e9edf3;
}

.degerle-gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.degerle-gallery-card:hover .degerle-gallery-media img {
  transform: scale(1.05);
}

.degerle-gallery-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: #061541;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 30px rgba(6, 21, 65, 0.22);
}

.degerle-gallery-play svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  transform: translateX(2px);
}

.degerle-gallery-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(3, 12, 32, .82);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.degerle-gallery-body {
  padding: 18px 16px 20px;
}

.degerle-gallery-body h2 {
  margin: 0 0 14px;
  color: #061541;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

.degerle-gallery-body p {
  margin: 0 0 22px;
  color: #3f485a;
  font-size: 13px;
  line-height: 1.85;
}

.degerle-gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #596578;
  font-size: 12px;
  font-weight: 700;
}

.degerle-gallery-meta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.degerle-gallery-contact {
  position: sticky;
  top: 112px;
  padding: 34px 26px;
  border-radius: 8px;
  background: #061541;
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(6, 21, 65, 0.16);
}

.degerle-gallery-contact h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.degerle-gallery-contact h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: #ff7a1a;
}

.degerle-gallery-contact > p {
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  line-height: 1.85;
}

.degerle-gallery-contact-list {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

.degerle-gallery-contact-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.degerle-gallery-contact-item svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.degerle-gallery-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  border-radius: 7px;
  background: #ff6818;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.degerle-gallery-contact-btn:hover {
  color: #ffffff;
  background: #ec5b0f;
}

@media (max-width: 1199px) {
  .degerle-video-layout {
  grid-template-columns: minmax(0, 1fr);
  }

  .degerle-gallery-contact {
  position: static;
  }
}

@media (max-width: 991px) {
  .degerle-video-gallery-page {
  padding-top: 82px;
  }

  .degerle-video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .degerle-video-breadcrumb {
  padding: 20px 0 26px;
  }

  .degerle-video-grid {
  grid-template-columns: 1fr;
  gap: 20px;
  }

  .degerle-gallery-media {
  height: 190px;
  }

  .degerle-gallery-contact {
  padding: 28px 22px;
  }
}