/* ************************************** */
/* release-notes.css */
/* ************************************** */

.release-notes {
    background-color: var(--bg-secondary)
}

.release-notes-content {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    color: var(--text-primary);
    font-size: 0.2 rem;
    max-width: 900px;
    margin: 0 auto;
}

.icons-container {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-item img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
}

.icon-item span {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 500;
}


/* Responsiveness */
@media (max-width: 768px) {
    .release-notes-content {
        font-size: 0.9rem;
        padding: 25px;
    }

    .icon-item img {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    object-fit: cover;
}

.icons-container {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.icon-item span {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
}

}