.cert-card { 
background: var(--white);
 border: 1px solid var(--border);
  border-radius: var(--radius);
   padding: 1.75rem 1.5rem;
    text-align: center;
     transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      height: 100%; 
  }
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }

.cert-name { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 0.3rem; }
.cert-org { font-size: 0.78rem; color: var(--muted); }
.cert-icon 
{ width: 250px;
 height: 230px; 
 background: linear-gradient(135deg, rgba(200,150,62,.12), rgba(200,150,62,.04));
  border-radius: 50%;
   display: flex;
    align-items: center;
     justify-content: center;
      margin: 0 auto 1rem; }
.cert-icon img { 
	width: 250px;
 height: 230px; 
 font-size: 2rem; color: var(--accent); }
