/* Scholarly Journey - Collage Points */
.collage-points {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(0, 246, 254, 0.04);
    border: 1px solid rgba(0, 246, 254, 0.2);
    border-left: 4px solid #00f6fe;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.point-item:hover {
    background: rgba(0, 246, 254, 0.08);
    border-color: rgba(0, 246, 254, 0.5);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0, 246, 254, 0.15);
}

.point-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: rgba(0, 246, 254, 0.1);
    border: 2px solid #00f6fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f6fe;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(0, 246, 254, 0.2);
    flex-shrink: 0;
    margin-top: 2px;
}

.point-body {
    flex: 1;
}

.point-body strong {
    display: block;
    color: #00f6fe;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: "Source Sans Pro", Arial, sans-serif;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.point-body p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    font-family: "Source Sans Pro", Arial, sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .point-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .point-icon {
        margin: 0 auto;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .point-body strong {
        font-size: 1rem;
    }

    .point-body p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .point-item:hover {
        transform: translateX(0) translateY(-3px);
    }
}