/* Education Methods Section */
.education-methods-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.education-methods-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.education-methods-section .methods-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.education-methods-section .method-card {
  min-width: 288px;
  min-height: 336.33px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background-color: #f9f7f7;
}

.education-methods-section .method-card .content {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
  padding: 20px 16px;
}

.education-methods-section .method-card .content p {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
}

.education-methods-section .content-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 191.33px;
  border-radius: 12px 12px 0 0;
}

.education-methods-section .content-image img {
  width: 100%;
  min-height: 184px;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}

.overlay {
  display: none;
}

@media (min-width: 1280px) {
  .education-methods-section .container {
    width: 1200px;
    gap: 60px;
  }

  .education-methods-section .title {
    width: 376px;
  }

  .education-methods-section .methods-panel {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .education-methods-section .method-card {
    min-width: 376px;
    min-height: 250px;
    width: 376px;
    height: 250px;
    border-radius: 12px;
    background-color: transparent;
    position: relative;
  }

  .education-methods-section .method-card .content {
    display: none;
  }

  .education-methods-section .content-image {
    width: 376px;
    height: 250px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
  }

  .education-methods-section .content-image img {
    width: 376px;
    height: 250px;
    border-radius: 12px;
    transition: filter 0.3s ease;
  }

  .education-methods-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 19, 27, 0.65);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
    padding: 40px;
  }

  .education-methods-section .content-image:hover img {
    filter: blur(5px);
  }

  .education-methods-section .content-image:hover .overlay {
    opacity: 1;
  }
}
