.gpm-student-placement-container {
    width: 100%;
}
.gpm-student-placement-container h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.gpm-student-placement-container .gpm-heading-main {
    color: #c21717;
}

.gpm-student-placement-container-main {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: auto;
}

.gpm-student-placement-card {
    width: calc(25% - 20px);
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.gpm-student-placement-card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gpm-student-placement-card:hover .gpm-student-placement-card-image {
    transform: scale(1.1);
}

.gpm-student-placement-card-content {
    padding: 20px;
    text-align: center;
}

.gpm-student-placement-card-title {
    margin: 0 0 5px;
    color: #1976d2;
    font-size: 1.5em;
}

.gpm-student-placement-card-subtitle {
    color: #c21717;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.gpm-student-placement-details {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gpm-student-placement-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
}

.gpm-student-placement-detail:last-child {
    border-bottom: none;
}

.gpm-student-placement-detail-label {
    color: black;
    font-weight: bold;
}

.gpm-student-placement-detail-value {
    color: black;
}

.gpm-student-placement-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #1976d2;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .gpm-student-placement-card {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .gpm-student-placement-card {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 600px) {
    .gpm-student-placement-card {
        width: 100%;
        max-width: 350px;
    }
}