.block-links-widget {
    max-width: 384px;
    margin: 0 auto;
    background: transparent;
}

.block-links-title {
    margin: 0 0 24px 0;
    color: #4285f4;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-size: 12px;
}

.block-links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.block-link-item {
    width: 100%;
    max-width: 240px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 8px 12px 16px;
    border-radius: 8px;
    background: #f3f4f6;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    border: none;
    text-align: left;
    cursor: pointer;
}

.block-link-item:hover {
    background: #e5e7eb;
}

.block-link-item:hover .block-link-arrow {
    color: #6b7280;
}

.block-link-content {
    flex: 1;
    min-width: 0;
}

.block-link-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.block-link-title {
    margin: 0;
    font-size: 13.4px;
    line-height: 1.5;
    font-weight: 600;
    color: #111827;
    transition: color 0.2s ease;
    letter-spacing: -0.03em;
}

.block-link-tag {
    background: #dcfce7;
    color: #15803d;
    padding: 2px 4px;
    border-radius: 9999px;
    line-height: 1.4;
    font-size: 11px;
    font-weight: 400;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.block-link-description {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.block-link-arrow {
    color: #9ca3af;
    transition: color 0.2s ease;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-link-arrow svg {
    width: 20px;
    height: 20px;
}

.block-links-empty {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    margin: 20px 0;
} 