/* Elite Accreditations Design System */

.acc-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.acc-card-v2 {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #edf2f7;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.acc-card-v2:hover {
  
  box-shadow: 0 30px 60px rgba(0, 60, 52, 0.05);
  border-color: rgba(0, 60, 52, 0.08);
}

/* Visual Container */
.acc-visual {
  position: relative;
  height: 280px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  overflow: hidden;
  cursor: pointer;
}

.acc-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.acc-card-v2:hover .acc-img {
  transform: scale(1.08) translateY(-5px);
}

/* Hover Overlay for Visual */
.acc-overlay-v2 {
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 52, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.acc-card-v2:hover .acc-overlay-v2 {
  opacity: 1;
}

.view-cert-btn {
  background: #ffffff;
  color: #003c34;
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  
}



/* Information Container */
.acc-info-v2 {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.acc-header-v2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.acc-title-v2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003c34;
  margin: 0;
  line-height: 1.2;
}

.acc-status-badge {
  background: rgba(0, 204, 166, 0.1);
  color: #008a70;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.acc-body-v2 {
  font-size: 1.05rem;
  color: #003c34;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

/* Footer Dates */
.acc-footer-v2 {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #edf2f7;
}

.acc-date-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.acc-date-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a0aec0;
  font-weight: 700;
}

.acc-date-item .value {
  font-size: 1rem;
  color: #003c34;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .acc-grid-v2 {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .acc-grid-v2 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .acc-visual {
    height: 240px;
    padding: 1.5rem;
  }
  
  .acc-info-v2 {
    padding: 1.5rem;
  }

  .acc-title-v2 {
    font-size: 1.25rem;
  }

  .acc-footer-v2 {
    gap: 1.5rem;
  }
}

@media (max-width: 650px) {
  .acc-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .acc-visual {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .acc-title-v2 {
    font-size: 1.2rem;
  }
  
  .acc-footer-v2 {
    flex-direction: column;
    gap: 1rem;
  }
}
