
.wrapper-card-global {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 20px;
    padding: 0 15px;
}


@media (min-width: 30em) {
    .wrapper-card-global {
        grid-template-columns: 1fr 1fr;
   }
}
@media (min-width: 60em) {
    .wrapper-card-global {
        grid-template-columns: repeat(3, 1fr);
   }
}
.card-info-global {
    background: white;
    text-decoration: none;
    color: #444;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    top: 0;
    transition: all 0.1s ease-in;
}
.card-info-global:hover {
    top: -2px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}
.card-info-global article {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-info-global h3 {
    font-size: 20px;
    margin: 0;
    color: #333;
}
.card-info-global p {
    flex: 1;
    line-height: 1.4;
}
.card-info-global span {
    font-size: 12px;
    font-weight: bold;
    color: #999;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    margin: 2em 0 0 0;
}
.card-info-global .thumb {
    padding-bottom: 60%;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.card-info-global .thumb-pegawai {
    padding-bottom: 60%;
    border-radius: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: beige;
    background-position: center center;
}

@media (min-width: 60em) {
    .item-1 {
        grid-column: 1 / span 2;
   }
    .item-1 h1 {
        font-size: 24px;
   }
}
