/* Info strip - estilo editorial */

div.info-strip
{
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e5e7eb;
    border-left: 4px solid #05a;
    clear: both;
    font-size: 1em;
}

div.info-strip-inner
{
    max-width: 1000px;
    margin: 0 auto;
    padding: 1em 1.5em;
}

div.info-strip .info-strip-link
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5em;
    text-decoration: none;
    color: #525345;
}

div.info-strip .info-strip-brand
{
    display: flex;
    align-items: center;
    gap: 1em;
    flex: 1;
    min-width: 0;
}

div.info-strip .info-strip-logo
{
    flex-shrink: 0;
}

div.info-strip .info-strip-logo img
{
    display: block;
    max-height: 36px;
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.95;
}

div.info-strip .info-strip-messages
{
    display: flex;
    flex-direction: column;
    gap: 0.25em;
}

div.info-strip .info-strip-credit
{
    font-size: 1.1em;
    color: #666;
    line-height: 1.4;
}

div.info-strip .info-strip-credit strong
{
    color: #05a;
    font-weight: 600;
}

div.info-strip .info-strip-cta
{
    font-size: 1.15em;
    color: #333;
    line-height: 1.4;
}

div.info-strip .info-strip-action
{
    flex-shrink: 0;
    background: #05a;
    color: #fff;
    padding: 0.85em 2em;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.15em;
    white-space: nowrap;
    transition: background 0.2s ease;
}

div.info-strip .info-strip-link:hover
{
    color: #333;
}

div.info-strip .info-strip-link:hover .info-strip-logo img
{
    opacity: 1;
}

div.info-strip .info-strip-link:hover .info-strip-action
{
    background: #048;
}

/* Responsive: columna en pantallas pequeñas */
@media screen and (max-width: 640px)
{
    div.info-strip .info-strip-link
    {
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    }

    div.info-strip .info-strip-brand
    {
        flex-direction: column;
        align-items: flex-start;
    }

    div.info-strip .info-strip-action
    {
        align-self: flex-start;
    }
}
