#academy .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

#academy .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  min-height: 3em;
  /* başlık hizası için */
}

#academy .card-desc {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #ccc;
}

/* destekçileri */

/****************************
 *  CORE LAYOUT & TYPOGRAPHY
 ***************************/
:root {
  --clr-bg: radial-gradient(circle at 10% 10%, #181818 0%, #000000 100%);
  --clr-primary: #ff4c5b;
  --clr-text: #ffffff;
  --radius-card: 1rem;
  --shadow-card: 0 10px 22px rgba(0, 0, 0, 0.5);
}

.academic-supporters {
  background: var(--clr-bg);
  color: var(--clr-text);
  padding: 5rem 1rem;
  display: flex;
  justify-content: center;
}

.academic-supporters .wrapper {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.supporter-list {
  list-style: none;
  padding: 0;
  margin: 3rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2rem;
  justify-content: center;
}

.supporter {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 1.75rem 2.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 140px;
}

.supporter:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.6);
}

.supporter img {
  max-width: 180px; /* larger relative size */
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.supporter:hover img {
  transform: scale(1.06);
}

/****************************
 *  RESPONSIVE TWEAKS
 ***************************/
@media (max-width: 640px) {
  .supporter {
    padding: 1.25rem 1.5rem;
    min-width: 200px;
    min-height: 120px;
  }
  .supporter img {
    max-width: 140px;
  }
}

/* konuşmacıların play iconu */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s, transform 0.3s;
}

.play-icon svg {
  display: block;
  transition: transform 0.3s;
}

.play-icon:hover {
  background: var(--clr-primary);
  transform: translate(-50%, -50%) scale(1.08);
}

.play-icon:hover svg {
  transform: scale(1.12);
}

/* partner plus */
.partner.plus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.plus-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.plus-text {
  font-family: "Arial", sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
  padding: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* hemen başvur fix */
/* Hem masaüstü hem mobil için sağ alt köşede circle buton */
.hemen-basvur {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--red-r300);
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideInBounce 1s ease-out;
}

.hemen-basvur:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #fff, 0 0 40px #fff, 0 0 60px #fff;
  color: #fff;
}

.hemen-basvur .fa-hand-pointer {
  animation: pointingAnimation 2s infinite ease-in-out;
}

@keyframes slideInBounce {
  0% {
    transform: translateX(100px) scale(0.5);
    opacity: 0;
  }
  60% {
    transform: translateX(-10px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes pointingAnimation {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(-10deg);
  }
}

/* zirve-logo */
@media (max-width: 768px) {
  .gen-mezuniyet-logo {
    width: 49% !important;
  }
}
