/* AEM Labs → Landing → Info Cards CSS
   =================================== */

.info-cards {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
    display: flex;
    gap: 18px;
}

.info-card {
    position: relative;
    padding: 22px 20px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.info-card i {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 18px;
    color: var(--accent-color-1);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #eee;
}

.info-card p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
}