.we-evals__section{
  background: #F3F4F6;
  padding: clamp(40px, 4vw, 70px) 0;
}
.we-evals__head{
  text-align: left;
  margin-bottom: 32px;
}
.we-evals__page-title{
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.we-evals__intro{
  line-height: 1.75;
  font-size: 15.5px;
  color: #4b5563;
}
.we-evals__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  margin-top: 18px;
}
@media (max-width: 980px){
  .we-evals__grid{
    grid-template-columns: 1fr;
  }
}
.we-evals-card{
  background: #fff;
  border: 1px solid #e7e9ee;
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  min-height: 270px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.we-evals-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}
.we-evals-card__title{
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #121212;
}
.we-evals-card__subtitle{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}
.we-evals-card__text{
  color: #4b5563;
  line-height: 1.75;
  font-size: 14.5px;
}
.we-evals-card__text p{
  margin: 0 0 10px;
}
.we-evals-card__text p:last-child{
  margin-bottom: 0;
}
.we-evals-card__footer{
  margin-top: auto;
  padding-top: 16px;
}
.we-evals-btn{
  display: inline-block;
  background: #0B1B71;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}
.we-evals-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  background: #082F89;
}
.we-evals-btn:active{
  transform: translateY(0);
}
@media (min-width: 1200px){
  .we-evals-card{
    padding: 24px 24px 20px;
  }
}
.we-evals2{
  background: #fff;
  padding: clamp(26px, 3vw, 40px) 0;
}
.we-evals2__title{
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #111827;
}
.we-evals2__text{
  color: #4b5563;
  line-height: 1.75;
  font-size: 15.5px;
  max-width: 980px;
}
.we-acc{
  margin-top: 22px;
}
.we-acc__btn{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #1a73e8;
  text-align: left;
}
.we-acc__btn:focus{
  outline: none;
}
.we-acc__btn:focus-visible{
  outline: 3px solid rgba(26,115,232,0.25);
  outline-offset: 4px;
  border-radius: 10px;
}
.we-acc__label{
  color: #0B1B71;
  flex: 1;
}
.we-acc__chev{
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0B1B71;
  color: #0B1B71;
  font-size: 16px;
  line-height: 1;
  transition: transform .35s ease, background .2s ease, color .2s ease;
}
.we-acc__btn:hover .we-acc__chev{
  background: rgba(26,115,232,0.08);
}
.we-acc__btn[aria-expanded="true"] .we-acc__chev{
  transform: rotate(180deg);
}
.we-acc__panel{
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s ease;
  will-change: max-height;
}
/* Кога панелот е отворен — отстрани overflow clipping */
.we-acc__panel.is-open{
  overflow: visible;
}
.we-acc__panel-inner{
  padding: 18px 0 8px;
  overflow-x: auto;
}
/* Force override на inline max-height што wpDataTables го инјектира */
.we-acc__panel-inner .wpdt-c,
.we-acc__panel-inner div.wpdt-c{
  width: 100%;
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
}
.we-acc__panel-inner table{
  width: 100% !important;
}