/* styles/edu.css */
.edu {
    min-height: 80vh;
}

.edu .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
    margin-bottom: 4rem;
}

.edu .item {
    width: auto;
    /* kutu daha küçük */
    height: auto;
    background-color: #fff7f7;
    border: 1px solid #e0caca;
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.edu .item:hover {
    transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.edu .item .content-left {
    margin: 2rem;
}
.edu .item .content-right {
    margin: 2rem;
}
.edu .item .content-right h3{
    display: inline-block;
    color: var(--black-color);
    border-bottom: 0.2rem solid black;
}

.edu .item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.edu .item h3 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
    color: #800000;
}

.edu .item p {
    font-size: 1.5rem;
    color: #444;
}


.edu .btn-wp {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 25rem;
}




/* edu end*/