.education-card-row {
  display: flex;
  gap: 26px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.edu-card {
  background: linear-gradient(120deg, #19191f 80%, #2c141a 100%);
  border-radius: 16px;
  border: 1.6px solid #e63946b7;
  box-shadow: 0 3px 12px #e6394616;
  width: 220px;
  min-height: 340px;
  max-height: 360px;
  margin-bottom: 18px;
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  transition: box-shadow .17s, filter .22s, opacity .19s, z-index .13s;
  overflow: visible;
  z-index: 2;
}
.edu-visual {
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0 0;
}
.edu-visual img {
  width: 75%;
  max-height: 80px;
  border-radius: 13px;
  box-shadow: 0 0 18px #e6394640;
}
.edu-brief {
  text-align: center;
  margin: 0 0 13px 0;
  padding: 0 10px;
}
.edu-title {
  font-size: 1.13rem;
  color: #e63946;
  font-weight: bold;
  margin: 11px 0 8px 0;
  letter-spacing: .06em;
}
.edu-mini {
  color: #eee7e7;
  font-size: .96rem;
  opacity: 0.91;
  margin-bottom: 14px;
}
.edu-btn {
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 19px;
  margin-top: 7px;
  font-size: .97rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .17s, box-shadow .14s;
  box-shadow: 0 2px 11px #e639461a;
}
.edu-btn:hover { background: #ff223a; box-shadow: 0 6px 18px #e639463c; }

.edu-drawer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 0;
  right: -260px;
  width: 250px;
  min-height: 0;
  height: auto;  /* burada! */
  background: linear-gradient(120deg, #20131b 85%, #31222a 100%);
  border-radius: 12px;
  box-shadow: 0 4px 28px #e6394639;
  border: 1.2px solid #e63946b8;
  padding: 24px 17px 17px 22px;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity .28s, right .22s;
  max-height: unset;    /* Yüksekliği serbest */
  overflow: visible;    /* Sarmalama için */
  box-sizing: border-box;
}
.edu-drawer h4 {
  color: #ff223a;
  font-size: 1.09rem;
  font-weight: 700;
  margin-bottom: 9px;
  letter-spacing: .04em;
}
.edu-drawer p {
  color: #fff;
  font-size: .96rem;
  opacity: 0.88;
  line-height: 1.56;
}
.edu-card.open .edu-drawer {
 opacity: 1;
  pointer-events: all;
  right: -235px;
  height: auto;     /* burada! */
  max-height: unset;
}
.edu-card.open {
  z-index: 20;
  box-shadow: 0 6px 36px #e6394648, 0 0 88px #e6394614;
  border-color: #ff223a;
  transform: scale(1.055);
}
.edu-card.blurred {
  filter: blur(2.2px) grayscale(.19);
  opacity: .48;
  pointer-events: none;
  z-index: 1;
}

@media (max-width:1400px) {
  .education-card-row { gap: 14px; }
  .edu-card { width: 19vw; min-width:170px; max-width:215px;}
  .edu-drawer { right: -195px; width: 180px;}
  .edu-card.open .edu-drawer { right: -170px;}
}
@media (max-width:1000px) {
  .edu-drawer, .edu-card.open .edu-drawer {
    position: static;
    width: 100%;
    right: unset;
    top: unset;
    min-height:unset;
    height: auto;
    border-radius: 0 0 10px 10px;
    margin: 0;
    opacity: 1 !important;
    pointer-events: all;
    box-shadow: 0 2px 18px #e6394610;
    transition: none;
    padding: 17px 12px 17px 13px;
    max-height: unset;
    overflow: visible;
  }
}
html {
  font-size: 14px; /* Varsayılan genelde 16px, bunu düşürmek her şeyi küçültür */
}
