/**
 * Ink Sponsor Block - Styles
 * Applies to both editor and frontend
 */

.ink-sponsor-block {
    background-color: var(--bg_color);
    color: var(--text_color);
    padding: 18px;
    margin-bottom: 24px;
}

.ink-sponsor-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.2s ease;
}

.ink-sponsor-link:hover {
    opacity: 0.9;
}

.ink-sponsor-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ink-sponsor-logo {
    flex-shrink: 0;
}

.ink-sponsor-logo img {
    width: auto;
    height: 32px;
    display: block;
}


.ink-sponsor-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    font-weight: 600;
    flex: 1;
}

.ink-sponsor-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
}

/* Editor-specific styles
.ink-sponsor-block.is-editor-preview {
    border: 2px dashed rgba(0, 0, 0, 0.1);
}

.ink-sponsor-editor-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 11px;
    font-style: italic;
    opacity: 0.6;
    text-align: center;
}*/

/* Responsive adjustments
@media (max-width: 600px) {
    .ink-sponsor-content {
        flex-direction: column;
        text-align: center;
    }

    .ink-sponsor-logo img {
        max-width: 100px;
    }

    .ink-sponsor-title {
        font-size: 16px;
    }
}
*/
