

/* ========================================= */
/* SECTION */
/* ========================================= */

.disclosure-section{
  background:linear-gradient(180deg,#ffffff,var(--bg-light));

  position:relative;
  overflow:hidden;
}

/* BACKGROUND SHAPES */

.disclosure-section::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:320px;
  height:320px;
  background:rgba(236,29,37,0.06);
  border-radius:50%;
}

.disclosure-section::after{
  content:"";
  position:absolute;
  bottom:-100px;
  left:-100px;
  width:260px;
  height:260px;
  background:rgba(38,52,137,0.06);
  border-radius:50%;
}

/* ========================================= */
/* MAIN BOX */
/* ========================================= */

.disclosure-wrapper{
  background:#ffffff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 15px 45px rgba(0,0,0,0.08);
  position:relative;
  z-index:2;
}

/* ========================================= */
/* HEADER */
/* ========================================= */

.disclosure-header{
  background:linear-gradient(135deg,var(--primary-blue),#3145b3);
  padding:45px;
  position:relative;
}

.disclosure-header::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:180px;
  height:100%;
  background:rgba(255,255,255,0.05);
  clip-path:polygon(35% 0,100% 0,100% 100%,0 100%);
}

.disclosure-header h1{
  color:#ffffff;
  font-size:34px;
  font-weight:700;
  line-height:1.5;
  margin:0;
  position:relative;
  z-index:2;
}

/* ========================================= */
/* BODY */
/* ========================================= */

.disclosure-body{
  padding:45px;
}

/* TITLE */

.disclosure-title{
  display:inline-flex;
  align-items:center;
  background:rgba(38,52,137,0.08);
  color:var(--primary-blue);
  padding:14px 24px;
  border-radius:50px;
  font-size:22px;
  font-weight:700;
  margin-bottom:35px;
}

.disclosure-title::before{
  content:"";
  width:14px;
  height:14px;
  background:var(--accent-red);
  border-radius:50%;
  margin-right:12px;
}

/* ========================================= */
/* GRID */
/* ========================================= */

.disclosure-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:24px;
}

/* ========================================= */
/* ITEM CARD */
/* ========================================= */

.disclosure-item a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#ffffff;
  border:1px solid rgba(38,52,137,0.10);
  border-radius:18px;
  padding:22px 24px;
  text-decoration:none;
  color:var(--text-black);
  font-size:16px;
  font-weight:600;
  min-height:95px;
  transition:0.35s ease;
  position:relative;
  overflow:hidden;
}

/* HOVER EFFECT BG */

.disclosure-item a::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:0%;
  height:100%;
  background:linear-gradient(135deg,var(--primary-blue),#3145b3);
  transition:0.4s ease;
  z-index:0;
}

/* TEXT */

.disclosure-item a span{
  position:relative;
  z-index:2;
  padding-right:18px;
}

/* ICON */

.disclosure-item a i{
  position:relative;
  z-index:2;
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(236,29,37,0.10);
  color:var(--accent-red);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  transition:0.35s ease;
  flex-shrink:0;
}

/* HOVER */

.disclosure-item a:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,0.12);
}

.disclosure-item a:hover::before{
  width:100%;
}

.disclosure-item a:hover span{
  color:#ffffff;
}

.disclosure-item a:hover i{
  background:#ffffff;
  color:var(--primary-blue);
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media(max-width:768px){

  .disclosure-section{
    padding:40px 0;
  }

  .disclosure-header{
    padding:28px 22px;
  }

  .disclosure-header h1{
    font-size:24px;
    line-height:1.4;
  }

  .disclosure-body{
    padding:25px 18px;
  }

  .disclosure-title{
    font-size:18px;
    padding:12px 18px;
  }

  .disclosure-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .disclosure-item a{
    font-size:14px;
    padding:18px;
    min-height:auto;
  }

}