/* Redesigned Signals Section Layout */

/* Flex Container */
.signals-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    /* Spacious gap between card and text */
    padding: 2rem 0;
    width: 100%;
    margin: 0 auto;
}

/* Left Column - Signal Card */
.signal-card-column {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
}

/* Preserve card shadow */
.signal-message {
    position: relative;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
}

/* Right Column - Info Features */
.signal-info-column {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Spacing between items */
}

/* Individual Info Item */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

/* Icon Styling - Orange/Gold */
.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    /* Primary Blue match */
}

/* Text Content */
.info-content {
    display: flex;
    flex-direction: column;
}

.info-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    /* Title matches icon color */
    line-height: 1.2;
}

.info-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    /* Muted grey for description */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .signals-content-wrapper {
        flex-direction: column;
        gap: 4rem;
        padding: 0 1rem;
    }

    .signal-card-column {
        max-width: 100%;
        width: 100%;
    }

    .signal-message {
        max-width: 500px;
        /* Keep strict width on tablet */
        margin: 0 auto;
    }

    .signal-info-column {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .info-item {
        gap: 1rem;
    }

    .info-icon {
        font-size: 1.75rem;
        width: 32px;
        margin-top: 2px;
    }

    .info-content h3 {
        font-size: 1.1rem;
    }
}