.berqnet-team-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolon */
    gap: 30px; /* Boşluk (gap) değeri 30 piksel */
    justify-items: center;

}
.berqnet-team-wrapper.advisory-team {
    grid-template-columns: repeat(3, 1fr) !important; /* 4 kolon */
}
.berqnet-team-wrapper .grid_team {
    border: 1px solid #C1C0C7;
    border-radius: 16px;
    padding: 32px 24px;
    width: 270px;
    position: relative;
    min-height: 270px;
}
.berqnet-team-wrapper .grid_team .team-image-social {
    margin-bottom: 24px;
}
.berqnet-team-wrapper .grid_team .team-image-social img {
  margin-right: 24px;
    border-radius: 100%;
	width:72px;
    height:72px;
	object-fit: cover ;
}
.berqnet-team-wrapper .grid_team .team-info .team-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 8px;
    color: #1a0b5e;
}
.berqnet-team-wrapper .grid_team .team-info .team-title {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;

}

.team-title {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-column-end: 3;
}
.berqnet-pageteam-image {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-column-end: 2;
}
.berqnet-pageteam-info {
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-column-end: 3;
    display: flex;
}
.berqnet-pageteam-item {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    height: 100%;
    width: 500px;
}
.berqnet-team-wrapper .grid_team:hover .team-more {
   opacity: 1;
}

.berqnet-pageteam-name  {
    font-size: 20px !important;
    display: block;
    margin-right:  16px;

}

.team-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
   
}


.team-more {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    border:1px solid #C1C0C7;
    border-radius: 4px;
    padding: 8px 16px;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 600;
    line-height: 20px;
    display: inline;
    position: absolute;
    bottom:10px;
}
.berqnet-pageteam-image img {
    width: 118px;
    height: 118px;
    border-radius: 16px;
}

/* Tablet boyutu için media query */
@media screen and (max-width: 1080px) {
    .berqnet-team-wrapper {
        grid-template-columns: repeat(3, 1fr); /* 3 kolon */

    }
}

/* Mobil boyutu için media query */
@media screen and (max-width: 480px) {
    .berqnet-team-wrapper {
        grid-template-columns: repeat(1, 1fr); /* 2 kolon */
        justify-content: center;
        align-items: stretch;
        gap: 15px;
    }
    .berqnet-team-wrapper.advisory-team {
        grid-template-columns: repeat(1, 1fr) !important; /* 2 kolon */
    }
    .berqnet-team-wrapper .grid_team {
        width: 100%;
    }
    .berqnet-team-wrapper .grid_team .team-image-social {
        display: flex;
        align-items: center;
    }
}

