/* =========================
   BREADCRUMB
========================= */
.breadcrumb {
  max-width: 1440px;
  margin: 20px auto 30px;
  font-size: 0.85rem;
  color: var(--text-sec);
}

.breadcrumb a {
  color: var(--text-sec);
  transition: 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .separator {
  margin: 0 8px;
}

.breadcrumb .current {
  color: #fff;
  font-weight: 500;
}

/* =========================
   work PAGE
========================= */
.work-page {
  padding: 20px 8% 0;
}

.work-title {
  font-size: 20px;
  margin-bottom: 60px;
}

/* ROW STRUCTURE */
.work-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

/* Reverse layout */
.work-row.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.work-row.reverse .work-image {
  order: 2;
}

.work-row.reverse .work-text {
  order: 1;
}

/* IMAGE */
.work-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: 0.3s;
}

.work-image img:hover {
  transform: scale(1.02);
}

/* TEXT BLOCK */
.work-text h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.work-text p {
  color: var(--text-sec);
  margin-bottom: 15px;
}

.work-text a {
  color: var(--accent);
}

.work-text ul {
  list-style: none;
  margin-bottom: 15px;
}

.work-text ul li {
  color: var(--text-sec);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.work-text ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* =========================
   TESTIMONIAL
========================= */
.testimonial {
  background: var(--card-bg);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-size: 40px;
  position: absolute;
  top: -10px;
  left: 10px;
  color: var(--accent);
  opacity: 0.2;
}

.testimonial .quote {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial .author {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.testimonial .name {
  font-weight: 600;
  color: #fff;
}

.testimonial .role {
  color: var(--text-sec);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .work-row,
  .work-row.reverse {
    grid-template-columns: 1fr;
  }

  .work-row.reverse .work-image,
  .work-row.reverse .work-text {
    order: unset;
  }

  .work-title {
    font-size: 20px;
  }
}
