/* ==============================
   WORKS HERO SECTION (MATCH ABOUT STYLE)
============================== */
/* ------------------ WORKS HERO AREA ------------------ */
.works-hero {
  width: 100%;
  padding: 100px;
  background: #F5F5F5;
  border-bottom: 1px solid #e4e4e4;
}

.works-hero-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(92%, 1200px);
  margin: auto;
  gap: 60px;
}

.works-hero-left {
  flex: 1;
  text-align: left;
}

/* PILL BREADCRUMB */
.works-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #eef9f3;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.works-breadcrumb a,
.works-breadcrumb p {
  margin: 0;
  font-size: 16px;
  color: #4bb879;
  text-decoration: none;
}

.works-breadcrumb span {
  color: #a8d9bf;
}

/* TITLE + DESCRIPTION */
.works-hero-title {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000;
}

.works-hero-desc {
  font-size: 21px;
  line-height: 1.6;
  color: #444;
  max-width: 500px;
}

.works-hero-right {
  flex: 1;
  text-align: right;
}

.works-hero-right img {
  border-radius: 12px;
  height: auto;
  object-fit: contain;
  display: inline-block;
}

/* ---------------- MOBILE RESPONSIVE ---------------- */
@media (max-width: 768px) {
  .works-hero {
    padding: 60px 0;
    text-align: center !important;
  }

  .works-hero-title {
    font-size: 32px;
    margin-bottom: 12px;
    text-align: center;
  }

  .works-hero-wrap {
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    gap: 0;
  }

  .works-hero-left,
  .works-hero-right {
    width: 100%;
    text-align: center !important;
  }

  .works-breadcrumb {
    margin-left: auto;
    margin-right: auto;
  }

  .works-hero-desc {
	  font-size:18px;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 90%;
  }

  .works-hero-right img {
    width: 90%;
    display: block;
    margin: 10px auto 0;
  }
}


/* ==============================
   WORKS GRID SECTION
============================== */
.wks-section {
  padding: 80px;
  background: #F5F5F5;
  text-align: center;
}

@media (max-width: 768px) {
  .wks-section {
    padding: 30px;
  }
}

.wks-container {
  width: min(92%, 1200px);
  margin: auto;
}

.wks-title {
  font-size: 48px;
  margin-bottom: 6px;
  margin-top: 0;
}

@media (max-width: 768px) {
  .wks-title {
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
  }
}

.wks-subtitle {
  font-size: 21px;
  color: #777;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
    .wks-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.5;
    }
}

/* FILTER BUTTON STYLE */
.wks-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.wks-filter-btn {
	text-transform: uppercase;
  border: 1px solid #2C73E5;
  background: #fff;
  color: #2C73E5;
  padding: 8px 20px;
  border-radius: 18px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.wks-filter-btn.active,
.wks-filter-btn:hover {
  background: #2C73E5;
  color: #fff;
}

/* GRID CARDS */
.wks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.wks-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid #f1f1f1;
}

.wks-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.09);
}

.wks-card a {
  text-decoration: none !important;
  color: inherit !important;
  display: block !important;
}

.wks-card a *,
.wks-card a p,
.wks-card a strong {
  text-decoration: none !important;
}

.wks-content,
.wks-content * {
  color: #1a1a1a !important;
}

/* IMAGE & CATEGORY TAG */
.wks-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.wks-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
  border-radius: 10px;
}

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

.wks-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #2C73E5;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  z-index: 10;
}

/* CONTENT SECTION */
.wks-content {
  padding: 22px 24px 26px;
  text-align: left;
}

.wks-logo {
  height: 26px;
  margin-bottom: 10px;
}

.wks-results {
  font-size: 15px;
  margin-bottom: 4px;
}

.wks-duration {
  font-size: 14px;
  margin-bottom: 10px;
}

.wks-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* BUTTON */
.wks-btn-wrap {
  margin-top: 40px;
}

.wks-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  color: #000000;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid #2C73E5;
}

.wks-btn:hover {
  background: #F5F5F5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wks-grid { grid-template-columns: 1fr; }
  .wks-image img { height: 220px; }
}
