@charset "utf-8";
/* CSS Document */

.workshop-section{
  padding:80px 0;
  min-height:100vh;
  background:
    radial-gradient(circle at top left, rgba(0,116,170,.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(20,145,110,.20), transparent 35%),
    linear-gradient(135deg,#eaf7ff 0%,#f7fbff 45%,#e9fff8 100%);
  position:relative;
  overflow:hidden;
}

.workshop-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("assets/img/bg-pattern.png");
  opacity:.05;
  pointer-events:none;
}

.workshop-section .container{
  position:relative;
  z-index:2;
  max-width:1200px;
}

.workshop-header{
  text-align:center;
  margin-bottom:45px;
}

.workshop-header span{
  display:inline-block;
  padding:9px 22px;
  border-radius:50px;
  background:rgba(14,45,86,.12);
  color:#0e2d56;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:14px;
}

.workshop-header h2{
  font-size:42px;
  font-weight:800;
  color:#0e2d56;
  margin:0;
}

.workshop-header p{
  font-size:18px;
  color:#24705f;
  margin-top:10px;
  font-weight:600;
}

.workshop-grid{
  display:grid;
   grid-template-columns:repeat(3,minmax(320px,350px));
  gap:22px;
justify-content:center;
	align-items:stretch;
}

.workshop-card{
  padding:26px;
  border-radius:24px;
  background:rgba(255,255,255,.45);
  border:1px solid rgba(255,255,255,.75);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 18px 45px rgba(14,45,86,.12);
  transition:.35s ease;
  position:relative;
  overflow:hidden;
	
	width:100%;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:center;
}

.workshop-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#0e2d56,#008c8c,#1fa971);
}

.workshop-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(14,45,86,.20);
}

.workshop-card h3{
  font-size:20px;
  line-height:1.35;
  color:#0e2d56;
  font-weight:800;
  margin-bottom:12px;
}

.workshop-card p{
  color:#40556b;
  font-size:15px;
  line-height:1.6;
  margin-bottom:14px;
}

.workshop-card h5{
  font-size:14px;
  color:#14705f;
  font-weight:700;
  margin-bottom:14px;
  line-height:1.5;
}

.workshop-card strong{
  display:inline-block;
  padding:8px 15px;
  border-radius:50px;
  background:linear-gradient(135deg,#0e2d56,#006f78);
  color:#fff;
  font-size:14px;
  box-shadow:0 8px 20px rgba(14,45,86,.22);
}

.workshop-note{
  margin:40px auto 0;
  max-width:720px;
  text-align:center;
  padding:18px 25px;
  border-radius:20px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(255,255,255,.8);
  backdrop-filter:blur(14px);
  color:#0e2d56;
  font-weight:700;
  box-shadow:0 15px 35px rgba(14,45,86,.12);
}

@media(max-width:991px){
  .workshop-grid{
    grid-template-columns:repeat(2,minmax(280px,340px));
    justify-content:center;
  }

  .workshop-header h2{
    font-size:34px;
  }
}

@media(max-width:575px){
  .workshop-section{
    padding:55px 15px;
  }

  .workshop-grid{
    grid-template-columns:minmax(100%,100%);
    gap:18px;
  }

  .workshop-card{
    padding:22px;
    border-radius:20px;
  }

  .workshop-header h2{
    font-size:28px;
  }

  .workshop-header p{
    font-size:16px;
  }
}