/* ===============================
   SECTION HEADER
================================ */
.tcc-wrapper {
  padding: 70px 20px 0;
  text-align: center;
}

.tcc-wrapper h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
}

.tcc-wrapper > p {
  max-width: 720px;
  margin: 12px auto 40px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--desc-color);
}

/* ===============================
   BAND (BACKGROUND AREA)
================================ */
.tcc-content-wrapper {
  /* background: #e4ebe6; */
  padding: 80px 20px 90px;
  position: relative;
}

/* ===============================
   TABS (CUT-IN STYLE)
================================ */
.tcc-tabs {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  background: #dfe6e1;
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
}

.tcc-tab {
  background: transparent;
  border: none;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--tab-color);
  cursor: pointer;
  border-radius: 999px;
}

.tcc-tab.active {
  background: #ffffff;
  color: var(--tab-active-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* ===============================
   CONTENT
================================ */
.tcc-content {
  display: none;
}
.tcc-content.active {
  display: block;
}

/* ===============================
   GRID
================================ */
.tcc-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ===============================
   CARD
================================ */
.tcc-card {
  background: #f4f7f4;
  border-radius: 24px;
  padding: 24px;
  text-align: left;
}

/* IMAGE */
.tcc-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}

/* META */
.tcc-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--meta-color);
  margin-bottom: 6px;
  display: block;
}

/* TITLE */
.tcc-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--card-title-color);
}

/* TEXT */
.tcc-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--card-text-color);
  margin-bottom: 18px;
}

/* BUTTON */
.tcc-card a {
  background: var(--btn-color);
  color: #fff;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

.links{
    text-decoration: none !important;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .tcc-grid {
    grid-template-columns: 1fr;
  }

  .tcc-tabs {
    position: static;
    transform: none;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .tcc-content-wrapper {
    padding: 0;
  }

  .tcc-card{
    padding: 14px;
  }
}
