/* GRID */
.attr-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* CARD */
.attr-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.attr-card:hover {
  border-color: #cdd3dc;
  transform: translateY(-2px);
  box-shadow:
    0 4px 14px rgba(9, 32, 51, 0.06),
    0 2px 4px rgba(9, 32, 51, 0.04);
}

/* HEADER */
.attr-card .head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.attr-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #092033;
}

.attr-card .count {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #737373;
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 999px;
}

/* ICON */
.attr-card .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #eaf6e6;
  color: #43b02a;
}

.expertise-ico img {
	width: 14px;
	height: 14px;
}

.attr-card .ico-1 {
  background: #eaf6e6;
}

.attr-card .ico-2 {
  background: #e3f3fd;
}

/* LIST */
.attr-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ITEM */
.attr-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid #eee;
  position: relative;
  transition: background 0.2s ease;
}

.attr-item .ext img {
  width: 14px;
  height: 14px;
}

/* NUMBER */
.attr-item .num {
  flex: 0 0 24px;
  font-size: 11px;
  font-weight: 700;
  color: #43b02a;
  letter-spacing: 0.04em;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}

/* BODY */
.attr-item .body {
  text-decoration: none;
  color: inherit;
  flex: 1;
}

.attr-item .src {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #737373;
  margin-bottom: 4px;
}

.attr-item .title {
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.attr-item .meta {
  font-size: 12px;
  opacity: 0.6;
}


/* Only linked items get hover color */
.attr-item a.body:hover .title {
    color: #43b02a;
}

/* 🔥 EXTERNAL ICON */
.attr-item .ext {
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
}

/* 🔥 HOVER SHOW ICON */
.attr-item:hover .ext {
  opacity: 1;
  transform: translateX(0);
}

.body-no-link {
    cursor: default;
}

.body-no-link:hover {
    color: inherit;
}

.attr-item:has(.body-no-link):hover {
    background: inherit;
    transform: none;
}

.Body-of-work-section {
	position: relative;
	align-self: center;
	padding-top: 48px;
	padding-right: 28px;
	padding-bottom: 0;
	padding-left: 28px;
}

.expertise-column .brxe-div:has(> .expertise-ico:empty):has(.expertise-title .brxe-text-basic:empty) {
    display: none !important;
}

.body-text {
	color: #43b02a;
	text-align: left;
	letter-spacing: .14em;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	width: 100%;
	margin-bottom: 14px;
}

.featured-text h2 {
	text-align: left;
	letter-spacing: -.01em;
	font-weight: 800;
	font-size: 36px;
	line-height: 1.05;
	width: 100%;
	margin-bottom: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .attr-grid {
    grid-template-columns: 1fr;
  }
}
