.ikapim-alumni-card {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

.ikapim-alumni-card .alumni-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    position: relative;
    width: min(700px, 100%);
    aspect-ratio: 85.6 / 53.98;
    padding: 32px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(90deg, #088f97, #004991);
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.card-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.card-background::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    top: -180px;
    right: -120px;
    background: rgba(255, 255, 255, 0.05);
}

.card-background::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    bottom: -120px;
    left: -100px;
    background: rgba(255, 255, 255, 0.04);
}

.card-header,
.card-body,
.card-footer {
    position: relative;
    z-index: 2;
}
.card-header {
    display: flex;
    justify-content: space-between;
    /* align-items: flex-start; */
    align-items: center;
}

.card-header h4 {
    margin-top: 4px;
    color: #fff;
    margin-bottom: 0;
    font-weight: bolder;
}
.card-header small {
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.5;
}

.logo {
    width: clamp(100px, 15vw, 180px);
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* gap: 10px; */
    padding-bottom: 16px;
}
.member-number {
    font-family: "Share Tech Mono", monospace;
    font-size: clamp(20px, 3vw, 30px);
    letter-spacing: 4px;
}
.member-name {
    font-size: clamp(22px, 3vw, 32px);
    text-transform: uppercase;
    font-weight: 700;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-top: 12px;
}

.info-item {
    display: flex;

    flex-direction: column;
}

.info-item:last-child {
    text-align: right;
}

.info-item span {
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-item strong {
    font-size: 1rem;
    font-weight: 600;
}

.alumni-card::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    top: -180px;
    right: -120px;
    background: rgba(255, 255, 255, 0.05);
}
.alumni-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 768px) {
    .ikapim-alumni-card {
        padding: 12px;
    }

    .ikapim-alumni-card .alumni-card {
        width: 100%;
        max-width: 420px;
        /* aspect-ratio: auto; */
        min-height: 380px;
        padding: 22px;
        border-radius: 18px;
    }

    .info-item span {
        font-size: 0.55rem;
    }

    .info-item strong {
        font-size: 0.85rem;
    }
}
